Create test
This commit is contained in:
committed by
Sergey Bogolepov
parent
59ac756f22
commit
fd22add3ca
@@ -0,0 +1,7 @@
|
||||
import kotlin.test.*
|
||||
import objclib.*
|
||||
|
||||
fun main() {
|
||||
assertEquals(1, getFrameworkInt())
|
||||
assertEquals(2, getDefInt())
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
language = Objective-C
|
||||
modules = Foo
|
||||
---
|
||||
static int getDefInt() {
|
||||
return 2;
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
static int getFrameworkInt() {
|
||||
return 1;
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
framework module Foo {
|
||||
umbrella header "Foo.h"
|
||||
}
|
||||
Reference in New Issue
Block a user