Minor: normalize '@Test' annotation casing in all tests.
This commit is contained in:
@@ -5,10 +5,10 @@ import java.math.BigInteger
|
||||
import java.math.BigDecimal
|
||||
|
||||
import kotlin.test.*
|
||||
import org.junit.Test as test
|
||||
import org.junit.Test
|
||||
|
||||
class MathTest {
|
||||
@test fun testBigInteger() {
|
||||
@Test fun testBigInteger() {
|
||||
val a = BigInteger("2")
|
||||
val b = BigInteger("3")
|
||||
|
||||
@@ -21,7 +21,7 @@ class MathTest {
|
||||
assertEquals(BigInteger("-2"), (-a).remainder(b))
|
||||
}
|
||||
|
||||
@test fun testBigDecimal() {
|
||||
@Test fun testBigDecimal() {
|
||||
val a = BigDecimal("2")
|
||||
val b = BigDecimal("3")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user