Replace JUnit @Test with kotlin-test @Test

This commit is contained in:
Iaroslav 2020-06-13 15:51:42 +07:00
parent fec8c7f9d1
commit 1582fde091
No known key found for this signature in database
GPG Key ID: 46E15E4A31B3BCD7
2 changed files with 2 additions and 2 deletions

View File

@ -1,12 +1,12 @@
package scietifik.kmath.ast
import org.junit.jupiter.api.Test
import scientifik.kmath.asm.asmField
import scientifik.kmath.ast.parseMath
import scientifik.kmath.expressions.invoke
import scientifik.kmath.operations.Complex
import scientifik.kmath.operations.ComplexField
import kotlin.test.assertEquals
import kotlin.test.Test
class AsmTest {
@Test

View File

@ -1,11 +1,11 @@
package scietifik.kmath.ast
import org.junit.jupiter.api.Test
import scientifik.kmath.ast.evaluate
import scientifik.kmath.ast.parseMath
import scientifik.kmath.operations.Complex
import scientifik.kmath.operations.ComplexField
import kotlin.test.assertEquals
import kotlin.test.Test
internal class ParserTest {
@Test