[Native] Rename :native:tests-blackbox.native to :native:native.tests
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
// KIND: STANDALONE
|
||||
// OUTPUT_DATA_FILE: 4x42.out
|
||||
|
||||
import kotlin.test.*
|
||||
|
||||
@Test
|
||||
fun addition() {
|
||||
println(40 + 2)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun multiplication () {
|
||||
println(21 * 2)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun subtraction () {
|
||||
println(50 - 8)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun division () {
|
||||
println(126 / 3)
|
||||
}
|
||||
Reference in New Issue
Block a user