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 1616
1717import org .junit .jupiter .api .BeforeAll ;
1818import org .junit .jupiter .api .Test ;
19+ import org .junit .jupiter .api .condition .DisabledOnOs ;
20+ import org .junit .jupiter .api .condition .OS ;
1921
2022import static org .junit .jupiter .api .Assertions .assertEquals ;
2123import static org .junit .jupiter .api .Assertions .assertNotNull ;
@@ -33,19 +35,22 @@ static void beforeAll() {
3335 }
3436
3537 @ Test
38+ @ DisabledOnOs (OS .LINUX ) // FIXME: enable on Linux when we get new compiler with mangled names in swift interfaces
3639 void test_MySwiftClass_voidMethod () {
3740 MySwiftClass o = new MySwiftClass (12 , 42 );
3841 o .voidMethod ();
3942 }
4043
4144 @ Test
45+ @ DisabledOnOs (OS .LINUX ) // FIXME: enable on Linux when we get new compiler with mangled names in swift interfaces
4246 void test_MySwiftClass_makeIntMethod () {
4347 MySwiftClass o = new MySwiftClass (12 , 42 );
4448 var got = o .makeIntMethod ();
4549 assertEquals (12 , got );
4650 }
4751
4852 @ Test
53+ @ DisabledOnOs (OS .LINUX ) // FIXME: enable on Linux when we get new compiler with mangled names in swift interfaces
4954 void test_MySwiftClass_property_len () {
5055 MySwiftClass o = new MySwiftClass (12 , 42 );
5156 var got = o .makeIntMethod ();
You can’t perform that action at this time.
0 commit comments