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