Minor: normalize '@Test' annotation casing in all tests.

This commit is contained in:
Ilya Gorbunov
2016-11-16 21:26:39 +03:00
parent 50cd620f92
commit 6a70761783
48 changed files with 749 additions and 751 deletions
+3 -3
View File
@@ -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")