[Test] Regenerate tests after two previous commits
This commit is contained in:
committed by
Space Team
parent
d9beae0556
commit
acf2296590
Generated
+64
-64
@@ -20,80 +20,80 @@ import java.util.regex.Pattern;
|
||||
@TestMetadata("plugins/noarg/testData/box")
|
||||
@TestDataPath("$PROJECT_ROOT")
|
||||
public class BlackBoxCodegenTestForNoArgGenerated extends AbstractBlackBoxCodegenTestForNoArg {
|
||||
@Test
|
||||
public void testAllFilesPresentInBox() throws Exception {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/noarg/testData/box"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
|
||||
}
|
||||
@Test
|
||||
public void testAllFilesPresentInBox() {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/noarg/testData/box"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("initializers.kt")
|
||||
public void testInitializers() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/initializers.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("initializers.kt")
|
||||
public void testInitializers() {
|
||||
runTest("plugins/noarg/testData/box/initializers.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("initializersWithoutInvokeInitializers.kt")
|
||||
public void testInitializersWithoutInvokeInitializers() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/initializersWithoutInvokeInitializers.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("initializersWithoutInvokeInitializers.kt")
|
||||
public void testInitializersWithoutInvokeInitializers() {
|
||||
runTest("plugins/noarg/testData/box/initializersWithoutInvokeInitializers.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("javaAnnotationWithInnerEnum.kt")
|
||||
public void testJavaAnnotationWithInnerEnum() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/javaAnnotationWithInnerEnum.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("javaAnnotationWithInnerEnum.kt")
|
||||
public void testJavaAnnotationWithInnerEnum() {
|
||||
runTest("plugins/noarg/testData/box/javaAnnotationWithInnerEnum.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt18245.kt")
|
||||
public void testKt18245() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/kt18245.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("kt18245.kt")
|
||||
public void testKt18245() {
|
||||
runTest("plugins/noarg/testData/box/kt18245.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt18667.kt")
|
||||
public void testKt18667() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/kt18667.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("kt18667.kt")
|
||||
public void testKt18667() {
|
||||
runTest("plugins/noarg/testData/box/kt18667.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt18668.kt")
|
||||
public void testKt18668() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/kt18668.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("kt18668.kt")
|
||||
public void testKt18668() {
|
||||
runTest("plugins/noarg/testData/box/kt18668.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt53122.kt")
|
||||
public void testKt53122() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/kt53122.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("kt53122.kt")
|
||||
public void testKt53122() {
|
||||
runTest("plugins/noarg/testData/box/kt53122.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("localClassInInitiailzer.kt")
|
||||
public void testLocalClassInInitiailzer() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/localClassInInitiailzer.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("localClassInInitiailzer.kt")
|
||||
public void testLocalClassInInitiailzer() {
|
||||
runTest("plugins/noarg/testData/box/localClassInInitiailzer.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("nestedClass.kt")
|
||||
public void testNestedClass() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/nestedClass.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("nestedClass.kt")
|
||||
public void testNestedClass() {
|
||||
runTest("plugins/noarg/testData/box/nestedClass.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("sealedClassWithExistingNoargCtor.kt")
|
||||
public void testSealedClassWithExistingNoargCtor() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/sealedClassWithExistingNoargCtor.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("sealedClassWithExistingNoargCtor.kt")
|
||||
public void testSealedClassWithExistingNoargCtor() {
|
||||
runTest("plugins/noarg/testData/box/sealedClassWithExistingNoargCtor.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("simple.kt")
|
||||
public void testSimple() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/simple.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("simple.kt")
|
||||
public void testSimple() {
|
||||
runTest("plugins/noarg/testData/box/simple.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("subclass.kt")
|
||||
public void testSubclass() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/subclass.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("subclass.kt")
|
||||
public void testSubclass() {
|
||||
runTest("plugins/noarg/testData/box/subclass.kt");
|
||||
}
|
||||
}
|
||||
|
||||
+14
-14
@@ -19,20 +19,20 @@ import java.util.regex.Pattern;
|
||||
@TestMetadata("plugins/noarg/testData/diagnostics")
|
||||
@TestDataPath("$PROJECT_ROOT")
|
||||
public class DiagnosticsTestForNoArgGenerated extends AbstractDiagnosticsTestForNoArg {
|
||||
@Test
|
||||
public void testAllFilesPresentInDiagnostics() throws Exception {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/noarg/testData/diagnostics"), Pattern.compile("^(.+)\\.kt$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), true);
|
||||
}
|
||||
@Test
|
||||
public void testAllFilesPresentInDiagnostics() {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/noarg/testData/diagnostics"), Pattern.compile("^(.+)\\.kt$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), true);
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("innerClass.kt")
|
||||
public void testInnerClass() throws Exception {
|
||||
runTest("plugins/noarg/testData/diagnostics/innerClass.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("innerClass.kt")
|
||||
public void testInnerClass() {
|
||||
runTest("plugins/noarg/testData/diagnostics/innerClass.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("noNoargCtorInSuperclass.kt")
|
||||
public void testNoNoargCtorInSuperclass() throws Exception {
|
||||
runTest("plugins/noarg/testData/diagnostics/noNoargCtorInSuperclass.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("noNoargCtorInSuperclass.kt")
|
||||
public void testNoNoargCtorInSuperclass() {
|
||||
runTest("plugins/noarg/testData/diagnostics/noNoargCtorInSuperclass.kt");
|
||||
}
|
||||
}
|
||||
|
||||
+64
-64
@@ -20,80 +20,80 @@ import java.util.regex.Pattern;
|
||||
@TestMetadata("plugins/noarg/testData/box")
|
||||
@TestDataPath("$PROJECT_ROOT")
|
||||
public class FirLightTreeBlackBoxCodegenTestForNoArgGenerated extends AbstractFirLightTreeBlackBoxCodegenTestForNoArg {
|
||||
@Test
|
||||
public void testAllFilesPresentInBox() throws Exception {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/noarg/testData/box"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
|
||||
}
|
||||
@Test
|
||||
public void testAllFilesPresentInBox() {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/noarg/testData/box"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("initializers.kt")
|
||||
public void testInitializers() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/initializers.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("initializers.kt")
|
||||
public void testInitializers() {
|
||||
runTest("plugins/noarg/testData/box/initializers.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("initializersWithoutInvokeInitializers.kt")
|
||||
public void testInitializersWithoutInvokeInitializers() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/initializersWithoutInvokeInitializers.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("initializersWithoutInvokeInitializers.kt")
|
||||
public void testInitializersWithoutInvokeInitializers() {
|
||||
runTest("plugins/noarg/testData/box/initializersWithoutInvokeInitializers.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("javaAnnotationWithInnerEnum.kt")
|
||||
public void testJavaAnnotationWithInnerEnum() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/javaAnnotationWithInnerEnum.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("javaAnnotationWithInnerEnum.kt")
|
||||
public void testJavaAnnotationWithInnerEnum() {
|
||||
runTest("plugins/noarg/testData/box/javaAnnotationWithInnerEnum.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt18245.kt")
|
||||
public void testKt18245() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/kt18245.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("kt18245.kt")
|
||||
public void testKt18245() {
|
||||
runTest("plugins/noarg/testData/box/kt18245.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt18667.kt")
|
||||
public void testKt18667() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/kt18667.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("kt18667.kt")
|
||||
public void testKt18667() {
|
||||
runTest("plugins/noarg/testData/box/kt18667.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt18668.kt")
|
||||
public void testKt18668() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/kt18668.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("kt18668.kt")
|
||||
public void testKt18668() {
|
||||
runTest("plugins/noarg/testData/box/kt18668.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt53122.kt")
|
||||
public void testKt53122() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/kt53122.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("kt53122.kt")
|
||||
public void testKt53122() {
|
||||
runTest("plugins/noarg/testData/box/kt53122.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("localClassInInitiailzer.kt")
|
||||
public void testLocalClassInInitiailzer() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/localClassInInitiailzer.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("localClassInInitiailzer.kt")
|
||||
public void testLocalClassInInitiailzer() {
|
||||
runTest("plugins/noarg/testData/box/localClassInInitiailzer.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("nestedClass.kt")
|
||||
public void testNestedClass() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/nestedClass.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("nestedClass.kt")
|
||||
public void testNestedClass() {
|
||||
runTest("plugins/noarg/testData/box/nestedClass.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("sealedClassWithExistingNoargCtor.kt")
|
||||
public void testSealedClassWithExistingNoargCtor() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/sealedClassWithExistingNoargCtor.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("sealedClassWithExistingNoargCtor.kt")
|
||||
public void testSealedClassWithExistingNoargCtor() {
|
||||
runTest("plugins/noarg/testData/box/sealedClassWithExistingNoargCtor.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("simple.kt")
|
||||
public void testSimple() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/simple.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("simple.kt")
|
||||
public void testSimple() {
|
||||
runTest("plugins/noarg/testData/box/simple.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("subclass.kt")
|
||||
public void testSubclass() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/subclass.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("subclass.kt")
|
||||
public void testSubclass() {
|
||||
runTest("plugins/noarg/testData/box/subclass.kt");
|
||||
}
|
||||
}
|
||||
|
||||
+49
-49
@@ -20,62 +20,62 @@ import java.util.regex.Pattern;
|
||||
@TestMetadata("plugins/noarg/testData/bytecodeListing")
|
||||
@TestDataPath("$PROJECT_ROOT")
|
||||
public class FirLightTreeBytecodeListingTestForNoArgGenerated extends AbstractFirLightTreeBytecodeListingTestForNoArg {
|
||||
@Test
|
||||
public void testAllFilesPresentInBytecodeListing() throws Exception {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/noarg/testData/bytecodeListing"), Pattern.compile("^(.+)\\.kt$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), TargetBackend.JVM_IR, true);
|
||||
}
|
||||
@Test
|
||||
public void testAllFilesPresentInBytecodeListing() {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/noarg/testData/bytecodeListing"), Pattern.compile("^(.+)\\.kt$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), TargetBackend.JVM_IR, true);
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("annoOnNotClass.kt")
|
||||
public void testAnnoOnNotClass() throws Exception {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/annoOnNotClass.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("annoOnNotClass.kt")
|
||||
public void testAnnoOnNotClass() {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/annoOnNotClass.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("constructorVisibility.kt")
|
||||
public void testConstructorVisibility() throws Exception {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/constructorVisibility.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("constructorVisibility.kt")
|
||||
public void testConstructorVisibility() {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/constructorVisibility.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("defaultParameters.kt")
|
||||
public void testDefaultParameters() throws Exception {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/defaultParameters.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("defaultParameters.kt")
|
||||
public void testDefaultParameters() {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/defaultParameters.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("inherited.kt")
|
||||
public void testInherited() throws Exception {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/inherited.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("inherited.kt")
|
||||
public void testInherited() {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/inherited.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("nestedClass.kt")
|
||||
public void testNestedClass() throws Exception {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/nestedClass.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("nestedClass.kt")
|
||||
public void testNestedClass() {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/nestedClass.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("noNoArg.kt")
|
||||
public void testNoNoArg() throws Exception {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/noNoArg.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("noNoArg.kt")
|
||||
public void testNoNoArg() {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/noNoArg.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("severalNoArg.kt")
|
||||
public void testSeveralNoArg() throws Exception {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/severalNoArg.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("severalNoArg.kt")
|
||||
public void testSeveralNoArg() {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/severalNoArg.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("simple.kt")
|
||||
public void testSimple() throws Exception {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/simple.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("simple.kt")
|
||||
public void testSimple() {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/simple.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("superTypes.kt")
|
||||
public void testSuperTypes() throws Exception {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/superTypes.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("superTypes.kt")
|
||||
public void testSuperTypes() {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/superTypes.kt");
|
||||
}
|
||||
}
|
||||
|
||||
Generated
+14
-14
@@ -19,20 +19,20 @@ import java.util.regex.Pattern;
|
||||
@TestMetadata("plugins/noarg/testData/diagnostics")
|
||||
@TestDataPath("$PROJECT_ROOT")
|
||||
public class FirPsiDiagnosticsTestForNoArgGenerated extends AbstractFirPsiDiagnosticsTestForNoArg {
|
||||
@Test
|
||||
public void testAllFilesPresentInDiagnostics() throws Exception {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/noarg/testData/diagnostics"), Pattern.compile("^(.+)\\.kt$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), true);
|
||||
}
|
||||
@Test
|
||||
public void testAllFilesPresentInDiagnostics() {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/noarg/testData/diagnostics"), Pattern.compile("^(.+)\\.kt$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), true);
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("innerClass.kt")
|
||||
public void testInnerClass() throws Exception {
|
||||
runTest("plugins/noarg/testData/diagnostics/innerClass.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("innerClass.kt")
|
||||
public void testInnerClass() {
|
||||
runTest("plugins/noarg/testData/diagnostics/innerClass.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("noNoargCtorInSuperclass.kt")
|
||||
public void testNoNoargCtorInSuperclass() throws Exception {
|
||||
runTest("plugins/noarg/testData/diagnostics/noNoargCtorInSuperclass.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("noNoargCtorInSuperclass.kt")
|
||||
public void testNoNoargCtorInSuperclass() {
|
||||
runTest("plugins/noarg/testData/diagnostics/noNoargCtorInSuperclass.kt");
|
||||
}
|
||||
}
|
||||
|
||||
Generated
+64
-64
@@ -20,80 +20,80 @@ import java.util.regex.Pattern;
|
||||
@TestMetadata("plugins/noarg/testData/box")
|
||||
@TestDataPath("$PROJECT_ROOT")
|
||||
public class IrBlackBoxCodegenTestForNoArgGenerated extends AbstractIrBlackBoxCodegenTestForNoArg {
|
||||
@Test
|
||||
public void testAllFilesPresentInBox() throws Exception {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/noarg/testData/box"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
|
||||
}
|
||||
@Test
|
||||
public void testAllFilesPresentInBox() {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/noarg/testData/box"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("initializers.kt")
|
||||
public void testInitializers() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/initializers.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("initializers.kt")
|
||||
public void testInitializers() {
|
||||
runTest("plugins/noarg/testData/box/initializers.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("initializersWithoutInvokeInitializers.kt")
|
||||
public void testInitializersWithoutInvokeInitializers() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/initializersWithoutInvokeInitializers.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("initializersWithoutInvokeInitializers.kt")
|
||||
public void testInitializersWithoutInvokeInitializers() {
|
||||
runTest("plugins/noarg/testData/box/initializersWithoutInvokeInitializers.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("javaAnnotationWithInnerEnum.kt")
|
||||
public void testJavaAnnotationWithInnerEnum() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/javaAnnotationWithInnerEnum.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("javaAnnotationWithInnerEnum.kt")
|
||||
public void testJavaAnnotationWithInnerEnum() {
|
||||
runTest("plugins/noarg/testData/box/javaAnnotationWithInnerEnum.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt18245.kt")
|
||||
public void testKt18245() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/kt18245.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("kt18245.kt")
|
||||
public void testKt18245() {
|
||||
runTest("plugins/noarg/testData/box/kt18245.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt18667.kt")
|
||||
public void testKt18667() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/kt18667.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("kt18667.kt")
|
||||
public void testKt18667() {
|
||||
runTest("plugins/noarg/testData/box/kt18667.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt18668.kt")
|
||||
public void testKt18668() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/kt18668.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("kt18668.kt")
|
||||
public void testKt18668() {
|
||||
runTest("plugins/noarg/testData/box/kt18668.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt53122.kt")
|
||||
public void testKt53122() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/kt53122.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("kt53122.kt")
|
||||
public void testKt53122() {
|
||||
runTest("plugins/noarg/testData/box/kt53122.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("localClassInInitiailzer.kt")
|
||||
public void testLocalClassInInitiailzer() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/localClassInInitiailzer.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("localClassInInitiailzer.kt")
|
||||
public void testLocalClassInInitiailzer() {
|
||||
runTest("plugins/noarg/testData/box/localClassInInitiailzer.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("nestedClass.kt")
|
||||
public void testNestedClass() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/nestedClass.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("nestedClass.kt")
|
||||
public void testNestedClass() {
|
||||
runTest("plugins/noarg/testData/box/nestedClass.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("sealedClassWithExistingNoargCtor.kt")
|
||||
public void testSealedClassWithExistingNoargCtor() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/sealedClassWithExistingNoargCtor.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("sealedClassWithExistingNoargCtor.kt")
|
||||
public void testSealedClassWithExistingNoargCtor() {
|
||||
runTest("plugins/noarg/testData/box/sealedClassWithExistingNoargCtor.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("simple.kt")
|
||||
public void testSimple() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/simple.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("simple.kt")
|
||||
public void testSimple() {
|
||||
runTest("plugins/noarg/testData/box/simple.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("subclass.kt")
|
||||
public void testSubclass() throws Exception {
|
||||
runTest("plugins/noarg/testData/box/subclass.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("subclass.kt")
|
||||
public void testSubclass() {
|
||||
runTest("plugins/noarg/testData/box/subclass.kt");
|
||||
}
|
||||
}
|
||||
|
||||
Generated
+49
-49
@@ -20,62 +20,62 @@ import java.util.regex.Pattern;
|
||||
@TestMetadata("plugins/noarg/testData/bytecodeListing")
|
||||
@TestDataPath("$PROJECT_ROOT")
|
||||
public class IrBytecodeListingTestForNoArgGenerated extends AbstractIrBytecodeListingTestForNoArg {
|
||||
@Test
|
||||
public void testAllFilesPresentInBytecodeListing() throws Exception {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/noarg/testData/bytecodeListing"), Pattern.compile("^(.+)\\.kt$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), TargetBackend.JVM_IR, true);
|
||||
}
|
||||
@Test
|
||||
public void testAllFilesPresentInBytecodeListing() {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/noarg/testData/bytecodeListing"), Pattern.compile("^(.+)\\.kt$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), TargetBackend.JVM_IR, true);
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("annoOnNotClass.kt")
|
||||
public void testAnnoOnNotClass() throws Exception {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/annoOnNotClass.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("annoOnNotClass.kt")
|
||||
public void testAnnoOnNotClass() {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/annoOnNotClass.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("constructorVisibility.kt")
|
||||
public void testConstructorVisibility() throws Exception {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/constructorVisibility.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("constructorVisibility.kt")
|
||||
public void testConstructorVisibility() {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/constructorVisibility.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("defaultParameters.kt")
|
||||
public void testDefaultParameters() throws Exception {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/defaultParameters.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("defaultParameters.kt")
|
||||
public void testDefaultParameters() {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/defaultParameters.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("inherited.kt")
|
||||
public void testInherited() throws Exception {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/inherited.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("inherited.kt")
|
||||
public void testInherited() {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/inherited.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("nestedClass.kt")
|
||||
public void testNestedClass() throws Exception {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/nestedClass.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("nestedClass.kt")
|
||||
public void testNestedClass() {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/nestedClass.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("noNoArg.kt")
|
||||
public void testNoNoArg() throws Exception {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/noNoArg.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("noNoArg.kt")
|
||||
public void testNoNoArg() {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/noNoArg.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("severalNoArg.kt")
|
||||
public void testSeveralNoArg() throws Exception {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/severalNoArg.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("severalNoArg.kt")
|
||||
public void testSeveralNoArg() {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/severalNoArg.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("simple.kt")
|
||||
public void testSimple() throws Exception {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/simple.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("simple.kt")
|
||||
public void testSimple() {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/simple.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("superTypes.kt")
|
||||
public void testSuperTypes() throws Exception {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/superTypes.kt");
|
||||
}
|
||||
@Test
|
||||
@TestMetadata("superTypes.kt")
|
||||
public void testSuperTypes() {
|
||||
runTest("plugins/noarg/testData/bytecodeListing/superTypes.kt");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user