Fixed test data to use only annotation syntax with @

This commit is contained in:
Valentin Kipyatkov
2015-10-12 18:23:20 +03:00
parent 487501a7a4
commit 090ea37a32
83 changed files with 115 additions and 121 deletions
+2 -2
View File
@@ -3,11 +3,11 @@ import org.junit.Test
class MyTestClass {
@org.junit.Test fun test1() {}
org.junit.Test fun test2() {}
@org.junit.Test fun test2() {}
@Test fun test3() {}
Test fun test4() {}
@Test fun test4() {}
@Deprecated @org.junit.Test fun test5() {}
+2 -2
View File
@@ -2,11 +2,11 @@ import org.junit.Test as test
import org.junit.Test
class MyTestClass {
test fun test1() {}
@test fun test1() {}
@Deprecated @test fun test2() {}
Test fun test3() {}
@Test fun test3() {}
}
// ANNOTATION: org.junit.Test
+2 -2
View File
@@ -2,11 +2,11 @@ import org.junit.Test as unittest
import org.junit.Test
class MyTestClass {
unittest fun test1() {}
@unittest fun test1() {}
@Deprecated @unittest fun test2() {}
Test fun test3() {}
@Test fun test3() {}
}
// ANNOTATION: org.junit.Test