BC native tests port to Konan's TestRunner
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
package codegen.function.eqeq
|
||||
|
||||
import kotlin.test.*
|
||||
|
||||
fun eqeqB (a:Byte, b:Byte ) = a == b
|
||||
fun eqeqS (a:Short, b:Short ) = a == b
|
||||
fun eqeqI (a:Int, b:Int ) = a == b
|
||||
@@ -26,7 +30,7 @@ fun neF (a:Float, b:Float ) = a != b
|
||||
fun helloString() = "Hello"
|
||||
fun goodbyeString() = "Goodbye"
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
@Test fun runTest() {
|
||||
if (!eqeqB(3 , 3 )) throw Error()
|
||||
if (!eqeqS(3 , 3 )) throw Error()
|
||||
if (!eqeqI(3 , 3 )) throw Error()
|
||||
|
||||
Reference in New Issue
Block a user