[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:
Sergey Bogolepov
2024-02-09 15:50:51 +02:00
parent 2d01c4ca4c
commit b5cb1fddff
8 changed files with 280 additions and 0 deletions
@@ -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