Adjust testData: get rid of obsolete annotations

This commit is contained in:
Denis Zharkov
2015-06-09 20:30:52 +03:00
parent 053dcf3abf
commit c9f79c2d05
193 changed files with 322 additions and 322 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
[Deprecated] class TestClass1 {}
@Deprecated class TestClass1 {}
[java.lang.Deprecated] class TestClass2 {}
@java.lang.Deprecated class TestClass2 {}
Deprecated class TestClass3 {}
+4 -4
View File
@@ -1,17 +1,17 @@
import org.junit.Test
class MyTestClass {
[org.junit.Test] fun test1() {}
@org.junit.Test fun test1() {}
org.junit.Test fun test2() {}
[Test] fun test3() {}
@Test fun test3() {}
Test fun test4() {}
[Deprecated org.junit.Test] fun test5() {}
@Deprecated @org.junit.Test fun test5() {}
[Deprecated Test] fun test6() {}
@Deprecated @Test fun test6() {}
fun test7() {}
}
+1 -1
View File
@@ -4,7 +4,7 @@ import org.junit.Test
class MyTestClass {
test fun test1() {}
[Deprecated test] fun test2() {}
@Deprecated @test fun test2() {}
Test fun test3() {}
}