Multiplatform test annotations
Actual annotations are provided in kotlin-test-junit on JVM side and in kotlin-test-js on JS side. #KT-19696
This commit is contained in:
@@ -7,8 +7,9 @@ configureJvm6Project(project)
|
||||
configurePublishing(project)
|
||||
|
||||
dependencies {
|
||||
implement project(':kotlin-test:kotlin-test-common')
|
||||
expectedBy project(':kotlin-test:kotlin-test-common')
|
||||
compile project(':kotlin-stdlib')
|
||||
testCompile project(":kotlin-test:kotlin-test-junit")
|
||||
testCompile('junit:junit:4.12')
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
package kotlin.test.tests
|
||||
|
||||
import kotlin.test.*
|
||||
import org.junit.*
|
||||
|
||||
class BasicAssertionsJVMTest {
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
@file:Suppress("DEPRECATION")
|
||||
package kotlin.test.tests
|
||||
|
||||
import org.junit.*
|
||||
import org.junit.Assert
|
||||
import java.util.*
|
||||
import kotlin.test.*
|
||||
|
||||
|
||||
@@ -17,7 +17,6 @@
|
||||
package kotlin.test.tests
|
||||
|
||||
import kotlin.test.*
|
||||
import org.junit.Test
|
||||
|
||||
class TestJVMTest {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user