Extract junit testcase, delete unneeded code
This commit is contained in:
committed by
Alexander Udalov
parent
8a605b3884
commit
b311255d96
@@ -0,0 +1,3 @@
|
||||
import org.junit.Test
|
||||
|
||||
Test fun foo(m : java.lang.reflect.Method) = "OK"
|
||||
@@ -0,0 +1,12 @@
|
||||
import kotlin.test.*
|
||||
import org.junit.Test as test
|
||||
|
||||
public class Test {
|
||||
test fun f(): Unit {
|
||||
assertEquals(true, !false)
|
||||
}
|
||||
}
|
||||
|
||||
fun foo() {
|
||||
Test().f()
|
||||
}
|
||||
Reference in New Issue
Block a user