Skip to content

Commit bb35663

Browse files
committed
test
1 parent 365ec51 commit bb35663

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/test/java/TreeDiffingTest.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ private static Stream<TestCase> testCases() throws IOException {
7676
@ParameterizedTest
7777
@MethodSource("testCases")
7878
public void testCase(TestCase testCase) throws IOException, DiffParseException {
79+
try {
7980
System.out.println(testCase);
8081

8182
VariationTree<DiffLinesLabel> beforeEdit = parseVariationTree(testCase.beforeEdit());
@@ -111,6 +112,11 @@ public void testCase(TestCase testCase) throws IOException, DiffParseException {
111112
));
112113
}
113114
}
115+
} catch (Exception e) {
116+
System.out.println("------------------- FAILURE ---------------");
117+
System.out.println(e);
118+
throw e;
119+
}
114120
}
115121

116122
public VariationTree<DiffLinesLabel> parseVariationTree(Path filename) throws IOException, DiffParseException {

0 commit comments

Comments
 (0)