Minor: move reflection/light/* -> reflection/*

This commit is contained in:
Zalim Bashorov
2016-10-04 17:18:59 +03:00
parent d31f18137d
commit ace10f46b2
6 changed files with 19 additions and 28 deletions
@@ -6229,37 +6229,28 @@ public class BoxJsTestGenerated extends AbstractBoxJsTest {
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("js/js.translator/testData/box/reflection"), Pattern.compile("^([^_](.+))\\.kt$"), true); KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("js/js.translator/testData/box/reflection"), Pattern.compile("^([^_](.+))\\.kt$"), true);
} }
@TestMetadata("js/js.translator/testData/box/reflection/light") @TestMetadata("jsClass.kt")
@TestDataPath("$PROJECT_ROOT") public void testJsClass() throws Exception {
@RunWith(JUnit3RunnerWithInners.class) String fileName = KotlinTestUtils.navigationMetadata("js/js.translator/testData/box/reflection/jsClass.kt");
public static class Light extends AbstractBoxJsTest { doTest(fileName);
public void testAllFilesPresentInLight() throws Exception { }
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("js/js.translator/testData/box/reflection/light"), Pattern.compile("^([^_](.+))\\.kt$"), true);
}
@TestMetadata("jsClass.kt") @TestMetadata("jsClassName.kt")
public void testJsClass() throws Exception { public void testJsClassName() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("js/js.translator/testData/box/reflection/light/jsClass.kt"); String fileName = KotlinTestUtils.navigationMetadata("js/js.translator/testData/box/reflection/jsClassName.kt");
doTest(fileName); doTest(fileName);
} }
@TestMetadata("jsClassName.kt") @TestMetadata("jsClassOnReifiedType.kt")
public void testJsClassName() throws Exception { public void testJsClassOnReifiedType() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("js/js.translator/testData/box/reflection/light/jsClassName.kt"); String fileName = KotlinTestUtils.navigationMetadata("js/js.translator/testData/box/reflection/jsClassOnReifiedType.kt");
doTest(fileName); doTest(fileName);
} }
@TestMetadata("jsClassOnReifiedType.kt") @TestMetadata("jsClassSimpleName.kt")
public void testJsClassOnReifiedType() throws Exception { public void testJsClassSimpleName() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("js/js.translator/testData/box/reflection/light/jsClassOnReifiedType.kt"); String fileName = KotlinTestUtils.navigationMetadata("js/js.translator/testData/box/reflection/jsClassSimpleName.kt");
doTest(fileName); doTest(fileName);
}
@TestMetadata("jsClassSimpleName.kt")
public void testJsClassSimpleName() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("js/js.translator/testData/box/reflection/light/jsClassSimpleName.kt");
doTest(fileName);
}
} }
} }