[K/N][tests] Added a bunch of tests on incremental compilation
This commit is contained in:
@@ -0,0 +1 @@
|
||||
fun foo() = 41
|
||||
@@ -0,0 +1 @@
|
||||
fun foo() = 42
|
||||
@@ -0,0 +1,4 @@
|
||||
import kotlin.test.*
|
||||
|
||||
@Test
|
||||
fun runTest() = assertEquals(41, foo())
|
||||
@@ -0,0 +1,4 @@
|
||||
import kotlin.test.*
|
||||
|
||||
@Test
|
||||
fun runTest() = assertEquals(42, foo())
|
||||
Reference in New Issue
Block a user