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
@@ -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 {