We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7b489c5 + 85c3356 commit 756b588Copy full SHA for 756b588
tests/src/test/java/org/everit/json/schema/V7TestSuiteTest.java
@@ -36,10 +36,16 @@ public static void stopJetty() throws Exception {
36
37
public V7TestSuiteTest(TestCase testcase, String descr) {
38
this.tc = testcase;
39
+ tc.loadSchema(SchemaLoader.builder().draftV7Support());
40
}
41
42
@Test
- public void test() {
43
- tc.runTest(SchemaLoader.builder().draftV7Support());
+ public void testInCollectingMode() {
44
+ tc.runTestInCollectingMode();
45
+ }
46
+
47
+ @Test
48
+ public void testInEarlyFailingMode() {
49
+ tc.runTestInEarlyFailureMode();
50
51
0 commit comments