[KT-65126] Initial version of Swift export integration tests
Here we reuse infrastructure from existing ObjC Framework tests. It is not the prettiest approach, and ideally we would like to use XCTest, but for now we need to quickly kick-start end-to-end tests.
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
package org.kotlin
|
||||
|
||||
fun plus(a: Int, b: Int, c: Int) =
|
||||
a + b + c
|
||||
|
||||
fun logicalOr(a: Boolean, b: Boolean) = a || b
|
||||
|
||||
fun xor(a: Boolean, b: Boolean) = a xor b
|
||||
Reference in New Issue
Block a user