From 13868f89e827d4937dabd827ff5c2a5a47377708 Mon Sep 17 00:00:00 2001 From: Yan Zhulanow Date: Wed, 2 Aug 2017 03:31:55 +0300 Subject: [PATCH] Minor: Change test format to JUnit 3 --- .../kotlin/android/parcel/ParcelBoxTest.kt | 42 +++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/plugins/plugins-tests/tests/org/jetbrains/kotlin/android/parcel/ParcelBoxTest.kt b/plugins/plugins-tests/tests/org/jetbrains/kotlin/android/parcel/ParcelBoxTest.kt index fd0ba64914e..85c3453de6c 100644 --- a/plugins/plugins-tests/tests/org/jetbrains/kotlin/android/parcel/ParcelBoxTest.kt +++ b/plugins/plugins-tests/tests/org/jetbrains/kotlin/android/parcel/ParcelBoxTest.kt @@ -25,25 +25,25 @@ import org.junit.runner.RunWith //@RunWith(RobolectricTestRunner::class) //@Config(manifest = Config.NONE) class ParcelBoxTest : AbstractParcelBoxTest() { - @Test fun simple() = doTest("simple") - @Test fun primitiveTypes() = doTest("primitiveTypes") - @Test fun boxedTypes() = doTest("boxedTypes") - @Test fun nullableTypesSimple() = doTest("nullableTypesSimple") - @Test fun nullableTypes() = doTest("nullableTypes") - @Test fun listSimple() = doTest("listSimple") - @Test fun lists() = doTest("lists") - @Test fun listKinds() = doTest("listKinds") - @Test fun arraySimple() = doTest("arraySimple") - @Test fun arrays() = doTest("arrays") - @Test fun mapSimple() = doTest("mapSimple") - @Test fun maps() = doTest("maps") - @Test fun mapKinds() = doTest("mapKinds") - @Test fun sparseBooleanArray() = doTest("sparseBooleanArray") - @Test fun bundle() = doTest("bundle") - @Test fun sparseArrays() = doTest("sparseArrays") - @Test fun customSimple() = doTest("customSimple") - @Test fun charSequence() = doTest("charSequence") - @Test fun enums() = doTest("enums") - @Test fun objects() = doTest("objects") - @Test fun nestedParcelable() = doTest("nestedParcelable") + fun testSimple() = doTest("simple") + fun testPrimitiveTypes() = doTest("primitiveTypes") + fun testBoxedTypes() = doTest("boxedTypes") + fun testNullableTypesSimple() = doTest("nullableTypesSimple") + fun testNullableTypes() = doTest("nullableTypes") + fun testListSimple() = doTest("listSimple") + fun testLists() = doTest("lists") + fun testListKinds() = doTest("listKinds") + fun testArraySimple() = doTest("arraySimple") + fun testArrays() = doTest("arrays") + fun testMapSimple() = doTest("mapSimple") + fun testMaps() = doTest("maps") + fun testMapKinds() = doTest("mapKinds") + fun testSparseBooleanArray() = doTest("sparseBooleanArray") + fun testBundle() = doTest("bundle") + fun testSparseArrays() = doTest("sparseArrays") + fun testCustomSimple() = doTest("customSimple") + fun testCharSequence() = doTest("charSequence") + fun testEnums() = doTest("enums") + fun testObjects() = doTest("objects") + fun testNestedParcelable() = doTest("nestedParcelable") } \ No newline at end of file