[Test] Regenerate tests after two previous commits
This commit is contained in:
committed by
Space Team
parent
d9beae0556
commit
acf2296590
+29
-29
@@ -20,38 +20,38 @@ import java.util.regex.Pattern;
|
||||
@TestMetadata("plugins/js-plain-objects/compiler-plugin/testData/box")
|
||||
@TestDataPath("$PROJECT_ROOT")
|
||||
public class FirJsPlainObjectsIrJsBoxTestGenerated extends AbstractFirJsPlainObjectsIrJsBoxTest {
|
||||
@Test
|
||||
public void testAllFilesPresentInBox() throws Exception {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/js-plain-objects/compiler-plugin/testData/box"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR, true);
|
||||
}
|
||||
@Test
|
||||
public void testAllFilesPresentInBox() {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/js-plain-objects/compiler-plugin/testData/box"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR, true);
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("copy.kt")
|
||||
public void testCopy() throws Exception {
|
||||
runTest("plugins/js-plain-objects/compiler-plugin/testData/box/copy.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("copy.kt")
|
||||
public void testCopy() {
|
||||
runTest("plugins/js-plain-objects/compiler-plugin/testData/box/copy.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("optional.kt")
|
||||
public void testOptional() throws Exception {
|
||||
runTest("plugins/js-plain-objects/compiler-plugin/testData/box/optional.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("optional.kt")
|
||||
public void testOptional() {
|
||||
runTest("plugins/js-plain-objects/compiler-plugin/testData/box/optional.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("simple.kt")
|
||||
public void testSimple() throws Exception {
|
||||
runTest("plugins/js-plain-objects/compiler-plugin/testData/box/simple.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("simple.kt")
|
||||
public void testSimple() {
|
||||
runTest("plugins/js-plain-objects/compiler-plugin/testData/box/simple.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("with-inheritance.kt")
|
||||
public void testWith_inheritance() throws Exception {
|
||||
runTest("plugins/js-plain-objects/compiler-plugin/testData/box/with-inheritance.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("with-inheritance.kt")
|
||||
public void testWith_inheritance() {
|
||||
runTest("plugins/js-plain-objects/compiler-plugin/testData/box/with-inheritance.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("with-multiple-inheritance.kt")
|
||||
public void testWith_multiple_inheritance() throws Exception {
|
||||
runTest("plugins/js-plain-objects/compiler-plugin/testData/box/with-multiple-inheritance.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("with-multiple-inheritance.kt")
|
||||
public void testWith_multiple_inheritance() {
|
||||
runTest("plugins/js-plain-objects/compiler-plugin/testData/box/with-multiple-inheritance.kt");
|
||||
}
|
||||
}
|
||||
|
||||
+19
-19
@@ -19,26 +19,26 @@ import java.util.regex.Pattern;
|
||||
@TestMetadata("plugins/js-plain-objects/compiler-plugin/testData/diagnostics")
|
||||
@TestDataPath("$PROJECT_ROOT")
|
||||
public class FirJsPlainObjectsPluginDiagnosticTestGenerated extends AbstractFirJsPlainObjectsPluginDiagnosticTest {
|
||||
@Test
|
||||
public void testAllFilesPresentInDiagnostics() throws Exception {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/js-plain-objects/compiler-plugin/testData/diagnostics"), Pattern.compile("^(.+)\\.kt$"), null, true);
|
||||
}
|
||||
@Test
|
||||
public void testAllFilesPresentInDiagnostics() {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/js-plain-objects/compiler-plugin/testData/diagnostics"), Pattern.compile("^(.+)\\.kt$"), null, true);
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("inheritance.kt")
|
||||
public void testInheritance() throws Exception {
|
||||
runTest("plugins/js-plain-objects/compiler-plugin/testData/diagnostics/inheritance.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("inheritance.kt")
|
||||
public void testInheritance() {
|
||||
runTest("plugins/js-plain-objects/compiler-plugin/testData/diagnostics/inheritance.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("only-properties.kt")
|
||||
public void testOnly_properties() throws Exception {
|
||||
runTest("plugins/js-plain-objects/compiler-plugin/testData/diagnostics/only-properties.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("only-properties.kt")
|
||||
public void testOnly_properties() {
|
||||
runTest("plugins/js-plain-objects/compiler-plugin/testData/diagnostics/only-properties.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("wrongAnnotationTarget.kt")
|
||||
public void testWrongAnnotationTarget() throws Exception {
|
||||
runTest("plugins/js-plain-objects/compiler-plugin/testData/diagnostics/wrongAnnotationTarget.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("wrongAnnotationTarget.kt")
|
||||
public void testWrongAnnotationTarget() {
|
||||
runTest("plugins/js-plain-objects/compiler-plugin/testData/diagnostics/wrongAnnotationTarget.kt");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user