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:
Ilya Gorbunov
2017-10-10 09:06:02 +03:00
parent 4b1b847f0a
commit f002493218
15 changed files with 146 additions and 9 deletions
+2 -1
View File
@@ -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 {