Regenerate tests

This commit is contained in:
Alexander Udalov
2018-04-30 18:51:28 +02:00
parent c63cd430d1
commit 10da41b136
2 changed files with 0 additions and 26 deletions
@@ -48,17 +48,4 @@ public class OutputPrefixPostfixTestGenerated extends AbstractOutputPrefixPostfi
public void testSimpleWithPrefixAndPostfix() throws Exception {
runTest("js/js.translator/testData/outputPrefixPostfix/simpleWithPrefixAndPostfix.kt");
}
@TestMetadata("js/js.translator/testData/outputPrefixPostfix/out")
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)
public static class Out extends AbstractOutputPrefixPostfixTest {
private void runTest(String testDataFilePath) throws Exception {
KotlinTestUtils.runTest0(this::doTest, TargetBackend.JS, testDataFilePath);
}
public void testAllFilesPresentInOut() throws Exception {
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("js/js.translator/testData/outputPrefixPostfix/out"), Pattern.compile("^([^_](.+))\\.kt$"), TargetBackend.JS, true);
}
}
}
@@ -43,17 +43,4 @@ public class SourceMapGenerationSmokeTestGenerated extends AbstractSourceMapGene
public void testMethodCallInMethod() throws Exception {
runTest("js/js.translator/testData/sourcemap/methodCallInMethod.kt");
}
@TestMetadata("js/js.translator/testData/sourcemap/out")
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)
public static class Out extends AbstractSourceMapGenerationSmokeTest {
private void runTest(String testDataFilePath) throws Exception {
KotlinTestUtils.runTest0(this::doTest, TargetBackend.JS, testDataFilePath);
}
public void testAllFilesPresentInOut() throws Exception {
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("js/js.translator/testData/sourcemap/out"), Pattern.compile("^([^_](.+))\\.kt$"), TargetBackend.JS, true);
}
}
}