File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Samples/SwiftKitSampleApp/src/test/java/com/example/swift/generated Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 16
16
17
17
import org .junit .jupiter .api .BeforeAll ;
18
18
import org .junit .jupiter .api .Test ;
19
+ import org .junit .jupiter .api .condition .DisabledOnOs ;
20
+ import org .junit .jupiter .api .condition .OS ;
19
21
20
22
import static org .junit .jupiter .api .Assertions .assertEquals ;
21
23
import static org .junit .jupiter .api .Assertions .assertNotNull ;
@@ -33,19 +35,22 @@ static void beforeAll() {
33
35
}
34
36
35
37
@ Test
38
+ @ DisabledOnOs (OS .LINUX ) // FIXME: enable on Linux when we get new compiler with mangled names in swift interfaces
36
39
void test_MySwiftClass_voidMethod () {
37
40
MySwiftClass o = new MySwiftClass (12 , 42 );
38
41
o .voidMethod ();
39
42
}
40
43
41
44
@ Test
45
+ @ DisabledOnOs (OS .LINUX ) // FIXME: enable on Linux when we get new compiler with mangled names in swift interfaces
42
46
void test_MySwiftClass_makeIntMethod () {
43
47
MySwiftClass o = new MySwiftClass (12 , 42 );
44
48
var got = o .makeIntMethod ();
45
49
assertEquals (12 , got );
46
50
}
47
51
48
52
@ Test
53
+ @ DisabledOnOs (OS .LINUX ) // FIXME: enable on Linux when we get new compiler with mangled names in swift interfaces
49
54
void test_MySwiftClass_property_len () {
50
55
MySwiftClass o = new MySwiftClass (12 , 42 );
51
56
var got = o .makeIntMethod ();
You can’t perform that action at this time.
0 commit comments