Use kotlin.test.Test instead of org.junit.Test in common stdlib tests

(and in jvm-only and js-only tests also)
This commit is contained in:
Ilya Gorbunov
2017-10-12 07:23:13 +03:00
parent f002493218
commit 20b122c1dd
67 changed files with 16 additions and 92 deletions
@@ -1,9 +1,7 @@
package numbers
import org.junit.Test
import kotlin.test.assertTrue
import kotlin.test.*
import kotlin.comparisons.*
import kotlin.test.assertEquals
val Double.Companion.values get() = listOf(0.0, NEGATIVE_INFINITY, MIN_VALUE, MAX_VALUE, POSITIVE_INFINITY, NaN)
val Float.Companion.values get() = listOf(0.0f, NEGATIVE_INFINITY, MIN_VALUE, MAX_VALUE, POSITIVE_INFINITY, NaN)