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
+4 -4
View File
@@ -2,11 +2,11 @@ package test.utils
import kotlin.*
import kotlin.test.*
import org.junit.Test as test
import org.junit.Test
class LazyTest {
@test fun initializationCalledOnce() {
@Test fun initializationCalledOnce() {
var callCount = 0
val lazyInt = lazy { ++callCount }
@@ -20,7 +20,7 @@ class LazyTest {
assertEquals(1, callCount)
}
@test fun alreadyInitialized() {
@Test fun alreadyInitialized() {
val lazyInt = lazyOf(1)
assertTrue(lazyInt.isInitialized())
@@ -28,7 +28,7 @@ class LazyTest {
}
@test fun lazyToString() {
@Test fun lazyToString() {
var callCount = 0
val lazyInt = lazy { ++callCount }