File tree 4 files changed +8
-8
lines changed
core/src/integrationTest/java/io/lionweb/lioncore/java/testset
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public class Invalid extends ATestset {
13
13
@ Parameterized .Parameters
14
14
public static Object [] inputFiles () {
15
15
Path integrationTests = findIntegrationTests ();
16
- Path basePath = integrationTests .resolve ("testset" ). resolve ( " invalid" );
16
+ Path basePath = integrationTests .resolve ("invalid" );
17
17
Object [] result = collectJsonFiles (basePath );
18
18
return result ;
19
19
}
@@ -25,8 +25,8 @@ public Invalid(Path path) {
25
25
@ Test
26
26
public void assertInvalid () {
27
27
assertThrows (
28
- path .toString (),
29
- RuntimeException .class ,
30
- () -> System .out .println (parse (path , JsonSerialization .getStandardSerialization ())));
28
+ path .toString (),
29
+ RuntimeException .class ,
30
+ () -> System .out .println (parse (path , JsonSerialization .getStandardSerialization ())));
31
31
}
32
- }
32
+ }
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ public class InvalidWithLanguage extends ALanguageTestset {
12
12
@ Parameterized .Parameters
13
13
public static Object [] inputFiles () {
14
14
Path integrationTests = findIntegrationTests ();
15
- Path basePath = integrationTests .resolve ("testset" ). resolve ( " withLanguage" ).resolve ("invalid" );
15
+ Path basePath = integrationTests .resolve ("withLanguage" ).resolve ("invalid" );
16
16
Object [] result = collectJsonFiles (basePath );
17
17
return result ;
18
18
}
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public class Valid extends ALanguageTestset {
14
14
@ Parameterized .Parameters
15
15
public static Object [] inputFiles () {
16
16
Path integrationTests = findIntegrationTests ();
17
- Path basePath = integrationTests .resolve ("testset" ). resolve ( " valid" );
17
+ Path basePath = integrationTests .resolve ("valid" );
18
18
Object [] result = collectJsonFiles (basePath );
19
19
return result ;
20
20
}
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public class ValidWithLanguage extends ALanguageTestset {
14
14
@ Parameterized .Parameters
15
15
public static Object [] inputFiles () {
16
16
Path integrationTests = findIntegrationTests ();
17
- Path basePath = integrationTests .resolve ("testset" ). resolve ( " withLanguage" ).resolve ("valid" );
17
+ Path basePath = integrationTests .resolve ("withLanguage" ).resolve ("valid" );
18
18
Object [] result = collectJsonFiles (basePath );
19
19
return result ;
20
20
}
You can’t perform that action at this time.
0 commit comments