[Test] Don't generate extends clause for nested classes in generated tests for JUnit5

This is fine since all nested classes in tests are inners by JUnit5
  specification, so they will see `runTest` method from outer root class
This commit is contained in:
Dmitriy Novozhilov
2021-01-28 12:38:59 +03:00
parent a4e9ab90a0
commit e79d02f482
29 changed files with 3019 additions and 3017 deletions
@@ -20,7 +20,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve") @TestMetadata("compiler/fir/analysis-tests/testData/resolve")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Resolve extends AbstractFirDiagnosticTest { public class Resolve {
@Test @Test
public void testAllFilesPresentInResolve() throws Exception { public void testAllFilesPresentInResolve() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -581,7 +581,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/arguments") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/arguments")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Arguments extends AbstractFirDiagnosticTest { public class Arguments {
@Test @Test
public void testAllFilesPresentInArguments() throws Exception { public void testAllFilesPresentInArguments() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/arguments"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/arguments"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -765,7 +765,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/arrays") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/arrays")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Arrays extends AbstractFirDiagnosticTest { public class Arrays {
@Test @Test
public void testAllFilesPresentInArrays() throws Exception { public void testAllFilesPresentInArrays() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/arrays"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/arrays"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -787,7 +787,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/builtins") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/builtins")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Builtins extends AbstractFirDiagnosticTest { public class Builtins {
@Test @Test
public void testAllFilesPresentInBuiltins() throws Exception { public void testAllFilesPresentInBuiltins() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/builtins"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/builtins"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -803,7 +803,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/callResolution") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/callResolution")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallResolution extends AbstractFirDiagnosticTest { public class CallResolution {
@Test @Test
public void testAllFilesPresentInCallResolution() throws Exception { public void testAllFilesPresentInCallResolution() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/callResolution"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/callResolution"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -903,7 +903,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/cfg") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/cfg")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Cfg extends AbstractFirDiagnosticTest { public class Cfg {
@Test @Test
public void testAllFilesPresentInCfg() throws Exception { public void testAllFilesPresentInCfg() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/cfg"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/cfg"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -1063,7 +1063,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/constructors") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/constructors")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Constructors extends AbstractFirDiagnosticTest { public class Constructors {
@Test @Test
public void testAllFilesPresentInConstructors() throws Exception { public void testAllFilesPresentInConstructors() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/constructors"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/constructors"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -1079,7 +1079,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/delegates") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/delegates")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Delegates extends AbstractFirDiagnosticTest { public class Delegates {
@Test @Test
public void testAllFilesPresentInDelegates() throws Exception { public void testAllFilesPresentInDelegates() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/delegates"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/delegates"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -1125,7 +1125,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/diagnostics") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/diagnostics")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Diagnostics extends AbstractFirDiagnosticTest { public class Diagnostics {
@Test @Test
@TestMetadata("abstractSuperCall.kt") @TestMetadata("abstractSuperCall.kt")
public void testAbstractSuperCall() throws Exception { public void testAbstractSuperCall() throws Exception {
@@ -1434,7 +1434,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/diagnostics/functionAsExpression") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/diagnostics/functionAsExpression")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FunctionAsExpression extends AbstractFirDiagnosticTest { public class FunctionAsExpression {
@Test @Test
public void testAllFilesPresentInFunctionAsExpression() throws Exception { public void testAllFilesPresentInFunctionAsExpression() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/diagnostics/functionAsExpression"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/diagnostics/functionAsExpression"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -1451,7 +1451,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/expresssions") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/expresssions")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Expresssions extends AbstractFirDiagnosticTest { public class Expresssions {
@Test @Test
@TestMetadata("access.kt") @TestMetadata("access.kt")
public void testAccess() throws Exception { public void testAccess() throws Exception {
@@ -1826,7 +1826,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/expresssions/inference") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/expresssions/inference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Inference extends AbstractFirDiagnosticTest { public class Inference {
@Test @Test
public void testAllFilesPresentInInference() throws Exception { public void testAllFilesPresentInInference() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/expresssions/inference"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/expresssions/inference"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -1854,7 +1854,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/expresssions/invoke") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/expresssions/invoke")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Invoke extends AbstractFirDiagnosticTest { public class Invoke {
@Test @Test
public void testAllFilesPresentInInvoke() throws Exception { public void testAllFilesPresentInInvoke() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/expresssions/invoke"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/expresssions/invoke"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -1954,7 +1954,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/expresssions/operators") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/expresssions/operators")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Operators extends AbstractFirDiagnosticTest { public class Operators {
@Test @Test
public void testAllFilesPresentInOperators() throws Exception { public void testAllFilesPresentInOperators() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/expresssions/operators"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/expresssions/operators"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -1983,7 +1983,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ExtendedCheckers extends AbstractFirDiagnosticTest { public class ExtendedCheckers {
@Test @Test
public void testAllFilesPresentInExtendedCheckers() throws Exception { public void testAllFilesPresentInExtendedCheckers() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2040,7 +2040,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/canBeReplacedWithOperatorAssignment") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/canBeReplacedWithOperatorAssignment")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CanBeReplacedWithOperatorAssignment extends AbstractFirDiagnosticTest { public class CanBeReplacedWithOperatorAssignment {
@Test @Test
public void testAllFilesPresentInCanBeReplacedWithOperatorAssignment() throws Exception { public void testAllFilesPresentInCanBeReplacedWithOperatorAssignment() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/canBeReplacedWithOperatorAssignment"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/canBeReplacedWithOperatorAssignment"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2164,7 +2164,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/emptyRangeChecker") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/emptyRangeChecker")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class EmptyRangeChecker extends AbstractFirDiagnosticTest { public class EmptyRangeChecker {
@Test @Test
public void testAllFilesPresentInEmptyRangeChecker() throws Exception { public void testAllFilesPresentInEmptyRangeChecker() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/emptyRangeChecker"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/emptyRangeChecker"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2186,7 +2186,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/RedundantCallOfConversionMethod") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/RedundantCallOfConversionMethod")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class RedundantCallOfConversionMethod extends AbstractFirDiagnosticTest { public class RedundantCallOfConversionMethod {
@Test @Test
public void testAllFilesPresentInRedundantCallOfConversionMethod() throws Exception { public void testAllFilesPresentInRedundantCallOfConversionMethod() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/RedundantCallOfConversionMethod"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/RedundantCallOfConversionMethod"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2316,7 +2316,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/unused") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/unused")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Unused extends AbstractFirDiagnosticTest { public class Unused {
@Test @Test
public void testAllFilesPresentInUnused() throws Exception { public void testAllFilesPresentInUnused() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/unused"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/unused"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2368,7 +2368,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/UselessCallOnNotNullChecker") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/UselessCallOnNotNullChecker")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class UselessCallOnNotNullChecker extends AbstractFirDiagnosticTest { public class UselessCallOnNotNullChecker {
@Test @Test
public void testAllFilesPresentInUselessCallOnNotNullChecker() throws Exception { public void testAllFilesPresentInUselessCallOnNotNullChecker() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/UselessCallOnNotNullChecker"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/UselessCallOnNotNullChecker"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2445,7 +2445,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/fromBuilder") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/fromBuilder")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FromBuilder extends AbstractFirDiagnosticTest { public class FromBuilder {
@Test @Test
public void testAllFilesPresentInFromBuilder() throws Exception { public void testAllFilesPresentInFromBuilder() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/fromBuilder"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/fromBuilder"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2485,7 +2485,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/inference") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/inference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Inference extends AbstractFirDiagnosticTest { public class Inference {
@Test @Test
public void testAllFilesPresentInInference() throws Exception { public void testAllFilesPresentInInference() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/inference"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/inference"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2615,7 +2615,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/innerClasses") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/innerClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InnerClasses extends AbstractFirDiagnosticTest { public class InnerClasses {
@Test @Test
public void testAllFilesPresentInInnerClasses() throws Exception { public void testAllFilesPresentInInnerClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/innerClasses"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/innerClasses"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2649,7 +2649,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/localClasses") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/localClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LocalClasses extends AbstractFirDiagnosticTest { public class LocalClasses {
@Test @Test
public void testAllFilesPresentInLocalClasses() throws Exception { public void testAllFilesPresentInLocalClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/localClasses"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/localClasses"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2677,7 +2677,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/multifile") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/multifile")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Multifile extends AbstractFirDiagnosticTest { public class Multifile {
@Test @Test
public void testAllFilesPresentInMultifile() throws Exception { public void testAllFilesPresentInMultifile() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/multifile"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/multifile"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2753,7 +2753,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/overrides") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/overrides")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Overrides extends AbstractFirDiagnosticTest { public class Overrides {
@Test @Test
public void testAllFilesPresentInOverrides() throws Exception { public void testAllFilesPresentInOverrides() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/overrides"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/overrides"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2811,7 +2811,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/problems") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/problems")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Problems extends AbstractFirDiagnosticTest { public class Problems {
@Test @Test
public void testAllFilesPresentInProblems() throws Exception { public void testAllFilesPresentInProblems() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/problems"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/problems"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2911,7 +2911,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/properties") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/properties")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Properties extends AbstractFirDiagnosticTest { public class Properties {
@Test @Test
public void testAllFilesPresentInProperties() throws Exception { public void testAllFilesPresentInProperties() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/properties"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/properties"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2957,7 +2957,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/references") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/references")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class References extends AbstractFirDiagnosticTest { public class References {
@Test @Test
public void testAllFilesPresentInReferences() throws Exception { public void testAllFilesPresentInReferences() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/references"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/references"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2991,7 +2991,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/samConstructors") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/samConstructors")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class SamConstructors extends AbstractFirDiagnosticTest { public class SamConstructors {
@Test @Test
public void testAllFilesPresentInSamConstructors() throws Exception { public void testAllFilesPresentInSamConstructors() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/samConstructors"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/samConstructors"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3037,7 +3037,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/samConversions") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/samConversions")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class SamConversions extends AbstractFirDiagnosticTest { public class SamConversions {
@Test @Test
public void testAllFilesPresentInSamConversions() throws Exception { public void testAllFilesPresentInSamConversions() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/samConversions"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/samConversions"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3101,7 +3101,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Smartcasts extends AbstractFirDiagnosticTest { public class Smartcasts {
@Test @Test
public void testAllFilesPresentInSmartcasts() throws Exception { public void testAllFilesPresentInSmartcasts() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3176,7 +3176,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/booleans") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/booleans")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Booleans extends AbstractFirDiagnosticTest { public class Booleans {
@Test @Test
public void testAllFilesPresentInBooleans() throws Exception { public void testAllFilesPresentInBooleans() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/booleans"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/booleans"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3204,7 +3204,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/boundSmartcasts") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/boundSmartcasts")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class BoundSmartcasts extends AbstractFirDiagnosticTest { public class BoundSmartcasts {
@Test @Test
public void testAllFilesPresentInBoundSmartcasts() throws Exception { public void testAllFilesPresentInBoundSmartcasts() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/boundSmartcasts"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/boundSmartcasts"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3232,7 +3232,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/controlStructures") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/controlStructures")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ControlStructures extends AbstractFirDiagnosticTest { public class ControlStructures {
@Test @Test
public void testAllFilesPresentInControlStructures() throws Exception { public void testAllFilesPresentInControlStructures() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/controlStructures"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/controlStructures"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3272,7 +3272,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/lambdas") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/lambdas")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Lambdas extends AbstractFirDiagnosticTest { public class Lambdas {
@Test @Test
public void testAllFilesPresentInLambdas() throws Exception { public void testAllFilesPresentInLambdas() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/lambdas"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/lambdas"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3300,7 +3300,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/loops") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/loops")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Loops extends AbstractFirDiagnosticTest { public class Loops {
@Test @Test
public void testAllFilesPresentInLoops() throws Exception { public void testAllFilesPresentInLoops() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/loops"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/loops"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3322,7 +3322,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/problems") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/problems")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Problems extends AbstractFirDiagnosticTest { public class Problems {
@Test @Test
public void testAllFilesPresentInProblems() throws Exception { public void testAllFilesPresentInProblems() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/problems"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/problems"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3338,7 +3338,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/receivers") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/receivers")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Receivers extends AbstractFirDiagnosticTest { public class Receivers {
@Test @Test
public void testAllFilesPresentInReceivers() throws Exception { public void testAllFilesPresentInReceivers() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/receivers"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/receivers"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3372,7 +3372,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/safeCalls") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/safeCalls")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class SafeCalls extends AbstractFirDiagnosticTest { public class SafeCalls {
@Test @Test
public void testAllFilesPresentInSafeCalls() throws Exception { public void testAllFilesPresentInSafeCalls() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/safeCalls"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/safeCalls"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3406,7 +3406,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/stability") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/stability")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Stability extends AbstractFirDiagnosticTest { public class Stability {
@Test @Test
public void testAllFilesPresentInStability() throws Exception { public void testAllFilesPresentInStability() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/stability"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/stability"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3422,7 +3422,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/variables") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/variables")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Variables extends AbstractFirDiagnosticTest { public class Variables {
@Test @Test
public void testAllFilesPresentInVariables() throws Exception { public void testAllFilesPresentInVariables() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/variables"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/variables"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3445,7 +3445,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/stdlib") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/stdlib")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Stdlib extends AbstractFirDiagnosticTest { public class Stdlib {
@Test @Test
public void testAllFilesPresentInStdlib() throws Exception { public void testAllFilesPresentInStdlib() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/stdlib"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/stdlib"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3454,7 +3454,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/stdlib/j+k") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/stdlib/j+k")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class J_k extends AbstractFirDiagnosticTest { public class J_k {
@Test @Test
public void testAllFilesPresentInJ_k() throws Exception { public void testAllFilesPresentInJ_k() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/stdlib/j+k"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/stdlib/j+k"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3477,7 +3477,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/types") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/types")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Types extends AbstractFirDiagnosticTest { public class Types {
@Test @Test
public void testAllFilesPresentInTypes() throws Exception { public void testAllFilesPresentInTypes() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/types"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/types"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3499,7 +3499,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/visibility") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/visibility")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Visibility extends AbstractFirDiagnosticTest { public class Visibility {
@Test @Test
public void testAllFilesPresentInVisibility() throws Exception { public void testAllFilesPresentInVisibility() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/visibility"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/visibility"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3576,7 +3576,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ResolveWithStdlib extends AbstractFirDiagnosticTest { public class ResolveWithStdlib {
@Test @Test
@TestMetadata("addAllOnJavaCollection.kt") @TestMetadata("addAllOnJavaCollection.kt")
public void testAddAllOnJavaCollection() throws Exception { public void testAddAllOnJavaCollection() throws Exception {
@@ -3915,7 +3915,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/callableReferences") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/callableReferences")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReferences extends AbstractFirDiagnosticTest { public class CallableReferences {
@Test @Test
public void testAllFilesPresentInCallableReferences() throws Exception { public void testAllFilesPresentInCallableReferences() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/callableReferences"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/callableReferences"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4062,7 +4062,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/callableReferences/fromBasicDiagnosticTests") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/callableReferences/fromBasicDiagnosticTests")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FromBasicDiagnosticTests extends AbstractFirDiagnosticTest { public class FromBasicDiagnosticTests {
@Test @Test
public void testAllFilesPresentInFromBasicDiagnosticTests() throws Exception { public void testAllFilesPresentInFromBasicDiagnosticTests() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/callableReferences/fromBasicDiagnosticTests"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/callableReferences/fromBasicDiagnosticTests"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4151,7 +4151,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Contracts extends AbstractFirDiagnosticTest { public class Contracts {
@Test @Test
public void testAllFilesPresentInContracts() throws Exception { public void testAllFilesPresentInContracts() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4160,7 +4160,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromLibrary") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromLibrary")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FromLibrary extends AbstractFirDiagnosticTest { public class FromLibrary {
@Test @Test
public void testAllFilesPresentInFromLibrary() throws Exception { public void testAllFilesPresentInFromLibrary() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromLibrary"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromLibrary"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4188,7 +4188,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FromSource extends AbstractFirDiagnosticTest { public class FromSource {
@Test @Test
public void testAllFilesPresentInFromSource() throws Exception { public void testAllFilesPresentInFromSource() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4197,7 +4197,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Bad extends AbstractFirDiagnosticTest { public class Bad {
@Test @Test
public void testAllFilesPresentInBad() throws Exception { public void testAllFilesPresentInBad() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4206,7 +4206,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad/callsInPlace") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad/callsInPlace")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallsInPlace extends AbstractFirDiagnosticTest { public class CallsInPlace {
@Test @Test
public void testAllFilesPresentInCallsInPlace() throws Exception { public void testAllFilesPresentInCallsInPlace() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad/callsInPlace"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad/callsInPlace"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4240,7 +4240,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad/returnsImplies") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad/returnsImplies")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ReturnsImplies extends AbstractFirDiagnosticTest { public class ReturnsImplies {
@Test @Test
public void testAllFilesPresentInReturnsImplies() throws Exception { public void testAllFilesPresentInReturnsImplies() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad/returnsImplies"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad/returnsImplies"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4263,7 +4263,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Good extends AbstractFirDiagnosticTest { public class Good {
@Test @Test
public void testAllFilesPresentInGood() throws Exception { public void testAllFilesPresentInGood() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4272,7 +4272,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/callsInPlace") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/callsInPlace")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallsInPlace extends AbstractFirDiagnosticTest { public class CallsInPlace {
@Test @Test
public void testAllFilesPresentInCallsInPlace() throws Exception { public void testAllFilesPresentInCallsInPlace() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/callsInPlace"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/callsInPlace"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4330,7 +4330,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/returnsImplies") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/returnsImplies")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ReturnsImplies extends AbstractFirDiagnosticTest { public class ReturnsImplies {
@Test @Test
public void testAllFilesPresentInReturnsImplies() throws Exception { public void testAllFilesPresentInReturnsImplies() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/returnsImplies"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/returnsImplies"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4406,7 +4406,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/variousContracts") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/variousContracts")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class VariousContracts extends AbstractFirDiagnosticTest { public class VariousContracts {
@Test @Test
public void testAllFilesPresentInVariousContracts() throws Exception { public void testAllFilesPresentInVariousContracts() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/variousContracts"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/variousContracts"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4415,7 +4415,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/variousContracts/newSyntax") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/variousContracts/newSyntax")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NewSyntax extends AbstractFirDiagnosticTest { public class NewSyntax {
@Test @Test
public void testAllFilesPresentInNewSyntax() throws Exception { public void testAllFilesPresentInNewSyntax() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/variousContracts/newSyntax"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/variousContracts/newSyntax"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4435,7 +4435,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/delegates") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/delegates")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Delegates extends AbstractFirDiagnosticTest { public class Delegates {
@Test @Test
public void testAllFilesPresentInDelegates() throws Exception { public void testAllFilesPresentInDelegates() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/delegates"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/delegates"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4481,7 +4481,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/inference") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/inference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Inference extends AbstractFirDiagnosticTest { public class Inference {
@Test @Test
public void testAllFilesPresentInInference() throws Exception { public void testAllFilesPresentInInference() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/inference"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/inference"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4533,7 +4533,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/initialization") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/initialization")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Initialization extends AbstractFirDiagnosticTest { public class Initialization {
@Test @Test
public void testAllFilesPresentInInitialization() throws Exception { public void testAllFilesPresentInInitialization() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/initialization"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/initialization"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4549,7 +4549,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/j+k") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/j+k")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class J_k extends AbstractFirDiagnosticTest { public class J_k {
@Test @Test
public void testAllFilesPresentInJ_k() throws Exception { public void testAllFilesPresentInJ_k() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/j+k"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/j+k"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4841,7 +4841,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/multiModule") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/multiModule")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MultiModule extends AbstractFirDiagnosticTest { public class MultiModule {
@Test @Test
public void testAllFilesPresentInMultiModule() throws Exception { public void testAllFilesPresentInMultiModule() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/multiModule"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/multiModule"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4881,7 +4881,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/problems") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/problems")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Problems extends AbstractFirDiagnosticTest { public class Problems {
@Test @Test
public void testAllFilesPresentInProblems() throws Exception { public void testAllFilesPresentInProblems() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/problems"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/problems"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4963,7 +4963,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/reinitializations") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/reinitializations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Reinitializations extends AbstractFirDiagnosticTest { public class Reinitializations {
@Test @Test
public void testAllFilesPresentInReinitializations() throws Exception { public void testAllFilesPresentInReinitializations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/reinitializations"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/reinitializations"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4979,7 +4979,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested @Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/smartcasts") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/smartcasts")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Smartcasts extends AbstractFirDiagnosticTest { public class Smartcasts {
@Test @Test
public void testAllFilesPresentInSmartcasts() throws Exception { public void testAllFilesPresentInSmartcasts() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/smartcasts"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/smartcasts"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -23,7 +23,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve") @TestMetadata("compiler/fir/analysis-tests/testData/resolve")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Resolve extends AbstractFirDiagnosticsWithLightTreeTest { public class Resolve {
@Test @Test
public void testAllFilesPresentInResolve() throws Exception { public void testAllFilesPresentInResolve() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -585,7 +585,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/arguments") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/arguments")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Arguments extends AbstractFirDiagnosticsWithLightTreeTest { public class Arguments {
@Test @Test
public void testAllFilesPresentInArguments() throws Exception { public void testAllFilesPresentInArguments() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/arguments"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/arguments"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -770,7 +770,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/arrays") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/arrays")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Arrays extends AbstractFirDiagnosticsWithLightTreeTest { public class Arrays {
@Test @Test
public void testAllFilesPresentInArrays() throws Exception { public void testAllFilesPresentInArrays() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/arrays"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/arrays"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -793,7 +793,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/builtins") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/builtins")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Builtins extends AbstractFirDiagnosticsWithLightTreeTest { public class Builtins {
@Test @Test
public void testAllFilesPresentInBuiltins() throws Exception { public void testAllFilesPresentInBuiltins() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/builtins"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/builtins"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -810,7 +810,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/callResolution") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/callResolution")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class CallResolution extends AbstractFirDiagnosticsWithLightTreeTest { public class CallResolution {
@Test @Test
public void testAllFilesPresentInCallResolution() throws Exception { public void testAllFilesPresentInCallResolution() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/callResolution"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/callResolution"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -911,7 +911,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/cfg") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/cfg")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Cfg extends AbstractFirDiagnosticsWithLightTreeTest { public class Cfg {
@Test @Test
public void testAllFilesPresentInCfg() throws Exception { public void testAllFilesPresentInCfg() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/cfg"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/cfg"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -1072,7 +1072,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/constructors") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/constructors")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Constructors extends AbstractFirDiagnosticsWithLightTreeTest { public class Constructors {
@Test @Test
public void testAllFilesPresentInConstructors() throws Exception { public void testAllFilesPresentInConstructors() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/constructors"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/constructors"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -1089,7 +1089,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/delegates") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/delegates")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Delegates extends AbstractFirDiagnosticsWithLightTreeTest { public class Delegates {
@Test @Test
public void testAllFilesPresentInDelegates() throws Exception { public void testAllFilesPresentInDelegates() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/delegates"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/delegates"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -1136,7 +1136,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/diagnostics") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/diagnostics")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Diagnostics extends AbstractFirDiagnosticsWithLightTreeTest { public class Diagnostics {
@Test @Test
@TestMetadata("abstractSuperCall.kt") @TestMetadata("abstractSuperCall.kt")
public void testAbstractSuperCall() throws Exception { public void testAbstractSuperCall() throws Exception {
@@ -1446,7 +1446,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/diagnostics/functionAsExpression") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/diagnostics/functionAsExpression")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class FunctionAsExpression extends AbstractFirDiagnosticsWithLightTreeTest { public class FunctionAsExpression {
@Test @Test
public void testAllFilesPresentInFunctionAsExpression() throws Exception { public void testAllFilesPresentInFunctionAsExpression() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/diagnostics/functionAsExpression"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/diagnostics/functionAsExpression"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -1464,7 +1464,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/expresssions") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/expresssions")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Expresssions extends AbstractFirDiagnosticsWithLightTreeTest { public class Expresssions {
@Test @Test
@TestMetadata("access.kt") @TestMetadata("access.kt")
public void testAccess() throws Exception { public void testAccess() throws Exception {
@@ -1840,7 +1840,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/expresssions/inference") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/expresssions/inference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Inference extends AbstractFirDiagnosticsWithLightTreeTest { public class Inference {
@Test @Test
public void testAllFilesPresentInInference() throws Exception { public void testAllFilesPresentInInference() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/expresssions/inference"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/expresssions/inference"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -1869,7 +1869,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/expresssions/invoke") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/expresssions/invoke")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Invoke extends AbstractFirDiagnosticsWithLightTreeTest { public class Invoke {
@Test @Test
public void testAllFilesPresentInInvoke() throws Exception { public void testAllFilesPresentInInvoke() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/expresssions/invoke"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/expresssions/invoke"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -1970,7 +1970,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/expresssions/operators") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/expresssions/operators")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Operators extends AbstractFirDiagnosticsWithLightTreeTest { public class Operators {
@Test @Test
public void testAllFilesPresentInOperators() throws Exception { public void testAllFilesPresentInOperators() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/expresssions/operators"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/expresssions/operators"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2000,7 +2000,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class ExtendedCheckers extends AbstractFirDiagnosticsWithLightTreeTest { public class ExtendedCheckers {
@Test @Test
public void testAllFilesPresentInExtendedCheckers() throws Exception { public void testAllFilesPresentInExtendedCheckers() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2058,7 +2058,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/canBeReplacedWithOperatorAssignment") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/canBeReplacedWithOperatorAssignment")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class CanBeReplacedWithOperatorAssignment extends AbstractFirDiagnosticsWithLightTreeTest { public class CanBeReplacedWithOperatorAssignment {
@Test @Test
public void testAllFilesPresentInCanBeReplacedWithOperatorAssignment() throws Exception { public void testAllFilesPresentInCanBeReplacedWithOperatorAssignment() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/canBeReplacedWithOperatorAssignment"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/canBeReplacedWithOperatorAssignment"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2183,7 +2183,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/emptyRangeChecker") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/emptyRangeChecker")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class EmptyRangeChecker extends AbstractFirDiagnosticsWithLightTreeTest { public class EmptyRangeChecker {
@Test @Test
public void testAllFilesPresentInEmptyRangeChecker() throws Exception { public void testAllFilesPresentInEmptyRangeChecker() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/emptyRangeChecker"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/emptyRangeChecker"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2206,7 +2206,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/RedundantCallOfConversionMethod") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/RedundantCallOfConversionMethod")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class RedundantCallOfConversionMethod extends AbstractFirDiagnosticsWithLightTreeTest { public class RedundantCallOfConversionMethod {
@Test @Test
public void testAllFilesPresentInRedundantCallOfConversionMethod() throws Exception { public void testAllFilesPresentInRedundantCallOfConversionMethod() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/RedundantCallOfConversionMethod"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/RedundantCallOfConversionMethod"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2337,7 +2337,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/unused") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/unused")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Unused extends AbstractFirDiagnosticsWithLightTreeTest { public class Unused {
@Test @Test
public void testAllFilesPresentInUnused() throws Exception { public void testAllFilesPresentInUnused() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/unused"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/unused"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2390,7 +2390,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/UselessCallOnNotNullChecker") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/UselessCallOnNotNullChecker")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class UselessCallOnNotNullChecker extends AbstractFirDiagnosticsWithLightTreeTest { public class UselessCallOnNotNullChecker {
@Test @Test
public void testAllFilesPresentInUselessCallOnNotNullChecker() throws Exception { public void testAllFilesPresentInUselessCallOnNotNullChecker() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/UselessCallOnNotNullChecker"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/UselessCallOnNotNullChecker"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2468,7 +2468,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/fromBuilder") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/fromBuilder")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class FromBuilder extends AbstractFirDiagnosticsWithLightTreeTest { public class FromBuilder {
@Test @Test
public void testAllFilesPresentInFromBuilder() throws Exception { public void testAllFilesPresentInFromBuilder() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/fromBuilder"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/fromBuilder"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2509,7 +2509,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/inference") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/inference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Inference extends AbstractFirDiagnosticsWithLightTreeTest { public class Inference {
@Test @Test
public void testAllFilesPresentInInference() throws Exception { public void testAllFilesPresentInInference() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/inference"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/inference"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2640,7 +2640,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/innerClasses") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/innerClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class InnerClasses extends AbstractFirDiagnosticsWithLightTreeTest { public class InnerClasses {
@Test @Test
public void testAllFilesPresentInInnerClasses() throws Exception { public void testAllFilesPresentInInnerClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/innerClasses"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/innerClasses"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2675,7 +2675,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/localClasses") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/localClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class LocalClasses extends AbstractFirDiagnosticsWithLightTreeTest { public class LocalClasses {
@Test @Test
public void testAllFilesPresentInLocalClasses() throws Exception { public void testAllFilesPresentInLocalClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/localClasses"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/localClasses"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2704,7 +2704,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/multifile") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/multifile")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Multifile extends AbstractFirDiagnosticsWithLightTreeTest { public class Multifile {
@Test @Test
public void testAllFilesPresentInMultifile() throws Exception { public void testAllFilesPresentInMultifile() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/multifile"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/multifile"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2781,7 +2781,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/overrides") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/overrides")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Overrides extends AbstractFirDiagnosticsWithLightTreeTest { public class Overrides {
@Test @Test
public void testAllFilesPresentInOverrides() throws Exception { public void testAllFilesPresentInOverrides() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/overrides"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/overrides"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2840,7 +2840,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/problems") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/problems")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Problems extends AbstractFirDiagnosticsWithLightTreeTest { public class Problems {
@Test @Test
public void testAllFilesPresentInProblems() throws Exception { public void testAllFilesPresentInProblems() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/problems"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/problems"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2941,7 +2941,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/properties") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/properties")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Properties extends AbstractFirDiagnosticsWithLightTreeTest { public class Properties {
@Test @Test
public void testAllFilesPresentInProperties() throws Exception { public void testAllFilesPresentInProperties() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/properties"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/properties"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -2988,7 +2988,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/references") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/references")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class References extends AbstractFirDiagnosticsWithLightTreeTest { public class References {
@Test @Test
public void testAllFilesPresentInReferences() throws Exception { public void testAllFilesPresentInReferences() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/references"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/references"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3023,7 +3023,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/samConstructors") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/samConstructors")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class SamConstructors extends AbstractFirDiagnosticsWithLightTreeTest { public class SamConstructors {
@Test @Test
public void testAllFilesPresentInSamConstructors() throws Exception { public void testAllFilesPresentInSamConstructors() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/samConstructors"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/samConstructors"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3070,7 +3070,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/samConversions") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/samConversions")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class SamConversions extends AbstractFirDiagnosticsWithLightTreeTest { public class SamConversions {
@Test @Test
public void testAllFilesPresentInSamConversions() throws Exception { public void testAllFilesPresentInSamConversions() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/samConversions"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/samConversions"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3135,7 +3135,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Smartcasts extends AbstractFirDiagnosticsWithLightTreeTest { public class Smartcasts {
@Test @Test
public void testAllFilesPresentInSmartcasts() throws Exception { public void testAllFilesPresentInSmartcasts() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3211,7 +3211,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/booleans") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/booleans")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Booleans extends AbstractFirDiagnosticsWithLightTreeTest { public class Booleans {
@Test @Test
public void testAllFilesPresentInBooleans() throws Exception { public void testAllFilesPresentInBooleans() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/booleans"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/booleans"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3240,7 +3240,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/boundSmartcasts") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/boundSmartcasts")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class BoundSmartcasts extends AbstractFirDiagnosticsWithLightTreeTest { public class BoundSmartcasts {
@Test @Test
public void testAllFilesPresentInBoundSmartcasts() throws Exception { public void testAllFilesPresentInBoundSmartcasts() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/boundSmartcasts"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/boundSmartcasts"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3269,7 +3269,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/controlStructures") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/controlStructures")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class ControlStructures extends AbstractFirDiagnosticsWithLightTreeTest { public class ControlStructures {
@Test @Test
public void testAllFilesPresentInControlStructures() throws Exception { public void testAllFilesPresentInControlStructures() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/controlStructures"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/controlStructures"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3310,7 +3310,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/lambdas") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/lambdas")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Lambdas extends AbstractFirDiagnosticsWithLightTreeTest { public class Lambdas {
@Test @Test
public void testAllFilesPresentInLambdas() throws Exception { public void testAllFilesPresentInLambdas() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/lambdas"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/lambdas"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3339,7 +3339,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/loops") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/loops")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Loops extends AbstractFirDiagnosticsWithLightTreeTest { public class Loops {
@Test @Test
public void testAllFilesPresentInLoops() throws Exception { public void testAllFilesPresentInLoops() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/loops"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/loops"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3362,7 +3362,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/problems") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/problems")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Problems extends AbstractFirDiagnosticsWithLightTreeTest { public class Problems {
@Test @Test
public void testAllFilesPresentInProblems() throws Exception { public void testAllFilesPresentInProblems() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/problems"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/problems"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3379,7 +3379,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/receivers") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/receivers")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Receivers extends AbstractFirDiagnosticsWithLightTreeTest { public class Receivers {
@Test @Test
public void testAllFilesPresentInReceivers() throws Exception { public void testAllFilesPresentInReceivers() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/receivers"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/receivers"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3414,7 +3414,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/safeCalls") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/safeCalls")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class SafeCalls extends AbstractFirDiagnosticsWithLightTreeTest { public class SafeCalls {
@Test @Test
public void testAllFilesPresentInSafeCalls() throws Exception { public void testAllFilesPresentInSafeCalls() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/safeCalls"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/safeCalls"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3449,7 +3449,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/stability") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/stability")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Stability extends AbstractFirDiagnosticsWithLightTreeTest { public class Stability {
@Test @Test
public void testAllFilesPresentInStability() throws Exception { public void testAllFilesPresentInStability() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/stability"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/stability"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3466,7 +3466,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/variables") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/variables")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Variables extends AbstractFirDiagnosticsWithLightTreeTest { public class Variables {
@Test @Test
public void testAllFilesPresentInVariables() throws Exception { public void testAllFilesPresentInVariables() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/variables"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/smartcasts/variables"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3490,7 +3490,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/stdlib") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/stdlib")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Stdlib extends AbstractFirDiagnosticsWithLightTreeTest { public class Stdlib {
@Test @Test
public void testAllFilesPresentInStdlib() throws Exception { public void testAllFilesPresentInStdlib() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/stdlib"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/stdlib"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3500,7 +3500,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/stdlib/j+k") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/stdlib/j+k")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class J_k extends AbstractFirDiagnosticsWithLightTreeTest { public class J_k {
@Test @Test
public void testAllFilesPresentInJ_k() throws Exception { public void testAllFilesPresentInJ_k() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/stdlib/j+k"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/stdlib/j+k"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3524,7 +3524,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/types") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/types")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Types extends AbstractFirDiagnosticsWithLightTreeTest { public class Types {
@Test @Test
public void testAllFilesPresentInTypes() throws Exception { public void testAllFilesPresentInTypes() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/types"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/types"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3547,7 +3547,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/visibility") @TestMetadata("compiler/fir/analysis-tests/testData/resolve/visibility")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Visibility extends AbstractFirDiagnosticsWithLightTreeTest { public class Visibility {
@Test @Test
public void testAllFilesPresentInVisibility() throws Exception { public void testAllFilesPresentInVisibility() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/visibility"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolve/visibility"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -3625,7 +3625,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class ResolveWithStdlib extends AbstractFirDiagnosticsWithLightTreeTest { public class ResolveWithStdlib {
@Test @Test
@TestMetadata("addAllOnJavaCollection.kt") @TestMetadata("addAllOnJavaCollection.kt")
public void testAddAllOnJavaCollection() throws Exception { public void testAddAllOnJavaCollection() throws Exception {
@@ -3965,7 +3965,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/callableReferences") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/callableReferences")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class CallableReferences extends AbstractFirDiagnosticsWithLightTreeTest { public class CallableReferences {
@Test @Test
public void testAllFilesPresentInCallableReferences() throws Exception { public void testAllFilesPresentInCallableReferences() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/callableReferences"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/callableReferences"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4113,7 +4113,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/callableReferences/fromBasicDiagnosticTests") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/callableReferences/fromBasicDiagnosticTests")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class FromBasicDiagnosticTests extends AbstractFirDiagnosticsWithLightTreeTest { public class FromBasicDiagnosticTests {
@Test @Test
public void testAllFilesPresentInFromBasicDiagnosticTests() throws Exception { public void testAllFilesPresentInFromBasicDiagnosticTests() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/callableReferences/fromBasicDiagnosticTests"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/callableReferences/fromBasicDiagnosticTests"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4203,7 +4203,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Contracts extends AbstractFirDiagnosticsWithLightTreeTest { public class Contracts {
@Test @Test
public void testAllFilesPresentInContracts() throws Exception { public void testAllFilesPresentInContracts() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4213,7 +4213,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromLibrary") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromLibrary")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class FromLibrary extends AbstractFirDiagnosticsWithLightTreeTest { public class FromLibrary {
@Test @Test
public void testAllFilesPresentInFromLibrary() throws Exception { public void testAllFilesPresentInFromLibrary() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromLibrary"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromLibrary"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4242,7 +4242,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class FromSource extends AbstractFirDiagnosticsWithLightTreeTest { public class FromSource {
@Test @Test
public void testAllFilesPresentInFromSource() throws Exception { public void testAllFilesPresentInFromSource() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4252,7 +4252,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Bad extends AbstractFirDiagnosticsWithLightTreeTest { public class Bad {
@Test @Test
public void testAllFilesPresentInBad() throws Exception { public void testAllFilesPresentInBad() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4262,7 +4262,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad/callsInPlace") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad/callsInPlace")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class CallsInPlace extends AbstractFirDiagnosticsWithLightTreeTest { public class CallsInPlace {
@Test @Test
public void testAllFilesPresentInCallsInPlace() throws Exception { public void testAllFilesPresentInCallsInPlace() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad/callsInPlace"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad/callsInPlace"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4297,7 +4297,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad/returnsImplies") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad/returnsImplies")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class ReturnsImplies extends AbstractFirDiagnosticsWithLightTreeTest { public class ReturnsImplies {
@Test @Test
public void testAllFilesPresentInReturnsImplies() throws Exception { public void testAllFilesPresentInReturnsImplies() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad/returnsImplies"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad/returnsImplies"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4321,7 +4321,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Good extends AbstractFirDiagnosticsWithLightTreeTest { public class Good {
@Test @Test
public void testAllFilesPresentInGood() throws Exception { public void testAllFilesPresentInGood() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4331,7 +4331,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/callsInPlace") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/callsInPlace")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class CallsInPlace extends AbstractFirDiagnosticsWithLightTreeTest { public class CallsInPlace {
@Test @Test
public void testAllFilesPresentInCallsInPlace() throws Exception { public void testAllFilesPresentInCallsInPlace() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/callsInPlace"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/callsInPlace"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4390,7 +4390,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/returnsImplies") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/returnsImplies")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class ReturnsImplies extends AbstractFirDiagnosticsWithLightTreeTest { public class ReturnsImplies {
@Test @Test
public void testAllFilesPresentInReturnsImplies() throws Exception { public void testAllFilesPresentInReturnsImplies() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/returnsImplies"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/returnsImplies"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4467,7 +4467,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/variousContracts") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/variousContracts")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class VariousContracts extends AbstractFirDiagnosticsWithLightTreeTest { public class VariousContracts {
@Test @Test
public void testAllFilesPresentInVariousContracts() throws Exception { public void testAllFilesPresentInVariousContracts() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/variousContracts"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/variousContracts"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4477,7 +4477,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/variousContracts/newSyntax") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/variousContracts/newSyntax")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class NewSyntax extends AbstractFirDiagnosticsWithLightTreeTest { public class NewSyntax {
@Test @Test
public void testAllFilesPresentInNewSyntax() throws Exception { public void testAllFilesPresentInNewSyntax() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/variousContracts/newSyntax"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/variousContracts/newSyntax"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4498,7 +4498,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/delegates") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/delegates")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Delegates extends AbstractFirDiagnosticsWithLightTreeTest { public class Delegates {
@Test @Test
public void testAllFilesPresentInDelegates() throws Exception { public void testAllFilesPresentInDelegates() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/delegates"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/delegates"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4545,7 +4545,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/inference") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/inference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Inference extends AbstractFirDiagnosticsWithLightTreeTest { public class Inference {
@Test @Test
public void testAllFilesPresentInInference() throws Exception { public void testAllFilesPresentInInference() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/inference"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/inference"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4598,7 +4598,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/initialization") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/initialization")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Initialization extends AbstractFirDiagnosticsWithLightTreeTest { public class Initialization {
@Test @Test
public void testAllFilesPresentInInitialization() throws Exception { public void testAllFilesPresentInInitialization() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/initialization"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/initialization"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4615,7 +4615,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/j+k") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/j+k")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class J_k extends AbstractFirDiagnosticsWithLightTreeTest { public class J_k {
@Test @Test
public void testAllFilesPresentInJ_k() throws Exception { public void testAllFilesPresentInJ_k() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/j+k"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/j+k"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4908,7 +4908,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/multiModule") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/multiModule")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class MultiModule extends AbstractFirDiagnosticsWithLightTreeTest { public class MultiModule {
@Test @Test
public void testAllFilesPresentInMultiModule() throws Exception { public void testAllFilesPresentInMultiModule() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/multiModule"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/multiModule"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -4949,7 +4949,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/problems") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/problems")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Problems extends AbstractFirDiagnosticsWithLightTreeTest { public class Problems {
@Test @Test
public void testAllFilesPresentInProblems() throws Exception { public void testAllFilesPresentInProblems() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/problems"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/problems"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -5032,7 +5032,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/reinitializations") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/reinitializations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Reinitializations extends AbstractFirDiagnosticsWithLightTreeTest { public class Reinitializations {
@Test @Test
public void testAllFilesPresentInReinitializations() throws Exception { public void testAllFilesPresentInReinitializations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/reinitializations"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/reinitializations"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -5049,7 +5049,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/smartcasts") @TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/smartcasts")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD) @Execution(ExecutionMode.SAME_THREAD)
public class Smartcasts extends AbstractFirDiagnosticsWithLightTreeTest { public class Smartcasts {
@Test @Test
public void testAllFilesPresentInSmartcasts() throws Exception { public void testAllFilesPresentInSmartcasts() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/smartcasts"), Pattern.compile("^([^.]+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/smartcasts"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
@@ -28,7 +28,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class AnonymousObject extends AbstractFirBlackBoxInlineCodegenTest { public class AnonymousObject {
@Test @Test
public void testAllFilesPresentInAnonymousObject() throws Exception { public void testAllFilesPresentInAnonymousObject() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -403,7 +403,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/enumWhen") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/enumWhen")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class EnumWhen extends AbstractFirBlackBoxInlineCodegenTest { public class EnumWhen {
@Test @Test
public void testAllFilesPresentInEnumWhen() throws Exception { public void testAllFilesPresentInEnumWhen() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/enumWhen"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/enumWhen"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -437,7 +437,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ProperRecapturing extends AbstractFirBlackBoxInlineCodegenTest { public class ProperRecapturing {
@Test @Test
public void testAllFilesPresentInProperRecapturing() throws Exception { public void testAllFilesPresentInProperRecapturing() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -483,7 +483,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ProperRecapturingInClass extends AbstractFirBlackBoxInlineCodegenTest { public class ProperRecapturingInClass {
@Test @Test
public void testAllFilesPresentInProperRecapturingInClass() throws Exception { public void testAllFilesPresentInProperRecapturingInClass() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -565,7 +565,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/sam") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/sam")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Sam extends AbstractFirBlackBoxInlineCodegenTest { public class Sam {
@Test @Test
public void testAllFilesPresentInSam() throws Exception { public void testAllFilesPresentInSam() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -617,7 +617,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TwoCapturedReceivers extends AbstractFirBlackBoxInlineCodegenTest { public class TwoCapturedReceivers {
@Test @Test
public void testAllFilesPresentInTwoCapturedReceivers() throws Exception { public void testAllFilesPresentInTwoCapturedReceivers() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -658,7 +658,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/argumentOrder") @TestMetadata("compiler/testData/codegen/boxInline/argumentOrder")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ArgumentOrder extends AbstractFirBlackBoxInlineCodegenTest { public class ArgumentOrder {
@Test @Test
public void testAllFilesPresentInArgumentOrder() throws Exception { public void testAllFilesPresentInArgumentOrder() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/argumentOrder"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/argumentOrder"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -752,7 +752,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/arrayConvention") @TestMetadata("compiler/testData/codegen/boxInline/arrayConvention")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ArrayConvention extends AbstractFirBlackBoxInlineCodegenTest { public class ArrayConvention {
@Test @Test
public void testAllFilesPresentInArrayConvention() throws Exception { public void testAllFilesPresentInArrayConvention() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/arrayConvention"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/arrayConvention"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -798,7 +798,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/assert") @TestMetadata("compiler/testData/codegen/boxInline/assert")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Assert extends AbstractFirBlackBoxInlineCodegenTest { public class Assert {
@Test @Test
public void testAllFilesPresentInAssert() throws Exception { public void testAllFilesPresentInAssert() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/assert"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/assert"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -880,7 +880,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/builders") @TestMetadata("compiler/testData/codegen/boxInline/builders")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Builders extends AbstractFirBlackBoxInlineCodegenTest { public class Builders {
@Test @Test
public void testAllFilesPresentInBuilders() throws Exception { public void testAllFilesPresentInBuilders() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/builders"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/builders"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -902,7 +902,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/bytecodePreprocessing") @TestMetadata("compiler/testData/codegen/boxInline/bytecodePreprocessing")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class BytecodePreprocessing extends AbstractFirBlackBoxInlineCodegenTest { public class BytecodePreprocessing {
@Test @Test
public void testAllFilesPresentInBytecodePreprocessing() throws Exception { public void testAllFilesPresentInBytecodePreprocessing() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/bytecodePreprocessing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/bytecodePreprocessing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -918,7 +918,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/callableReference") @TestMetadata("compiler/testData/codegen/boxInline/callableReference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReference extends AbstractFirBlackBoxInlineCodegenTest { public class CallableReference {
@Test @Test
@TestMetadata("adapted.kt") @TestMetadata("adapted.kt")
public void testAdapted() throws Exception { public void testAdapted() throws Exception {
@@ -1023,7 +1023,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/callableReference/bound") @TestMetadata("compiler/testData/codegen/boxInline/callableReference/bound")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Bound extends AbstractFirBlackBoxInlineCodegenTest { public class Bound {
@Test @Test
public void testAllFilesPresentInBound() throws Exception { public void testAllFilesPresentInBound() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/callableReference/bound"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/callableReference/bound"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1184,7 +1184,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/capture") @TestMetadata("compiler/testData/codegen/boxInline/capture")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Capture extends AbstractFirBlackBoxInlineCodegenTest { public class Capture {
@Test @Test
public void testAllFilesPresentInCapture() throws Exception { public void testAllFilesPresentInCapture() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/capture"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/capture"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1230,7 +1230,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/complex") @TestMetadata("compiler/testData/codegen/boxInline/complex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Complex extends AbstractFirBlackBoxInlineCodegenTest { public class Complex {
@Test @Test
public void testAllFilesPresentInComplex() throws Exception { public void testAllFilesPresentInComplex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1288,7 +1288,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/complexStack") @TestMetadata("compiler/testData/codegen/boxInline/complexStack")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ComplexStack extends AbstractFirBlackBoxInlineCodegenTest { public class ComplexStack {
@Test @Test
public void testAllFilesPresentInComplexStack() throws Exception { public void testAllFilesPresentInComplexStack() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complexStack"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complexStack"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1352,7 +1352,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/contracts") @TestMetadata("compiler/testData/codegen/boxInline/contracts")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Contracts extends AbstractFirBlackBoxInlineCodegenTest { public class Contracts {
@Test @Test
public void testAllFilesPresentInContracts() throws Exception { public void testAllFilesPresentInContracts() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/contracts"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/contracts"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1452,7 +1452,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultValues extends AbstractFirBlackBoxInlineCodegenTest { public class DefaultValues {
@Test @Test
@TestMetadata("33Parameters.kt") @TestMetadata("33Parameters.kt")
public void test33Parameters() throws Exception { public void test33Parameters() throws Exception {
@@ -1581,7 +1581,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LambdaInlining extends AbstractFirBlackBoxInlineCodegenTest { public class LambdaInlining {
@Test @Test
public void testAllFilesPresentInLambdaInlining() throws Exception { public void testAllFilesPresentInLambdaInlining() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1782,7 +1782,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReferences extends AbstractFirBlackBoxInlineCodegenTest { public class CallableReferences {
@Test @Test
public void testAllFilesPresentInCallableReferences() throws Exception { public void testAllFilesPresentInCallableReferences() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1925,7 +1925,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/maskElimination") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues/maskElimination")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MaskElimination extends AbstractFirBlackBoxInlineCodegenTest { public class MaskElimination {
@Test @Test
@TestMetadata("32Parameters.kt") @TestMetadata("32Parameters.kt")
public void test32Parameters() throws Exception { public void test32Parameters() throws Exception {
@@ -1978,7 +1978,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/delegatedProperty") @TestMetadata("compiler/testData/codegen/boxInline/delegatedProperty")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DelegatedProperty extends AbstractFirBlackBoxInlineCodegenTest { public class DelegatedProperty {
@Test @Test
public void testAllFilesPresentInDelegatedProperty() throws Exception { public void testAllFilesPresentInDelegatedProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/delegatedProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/delegatedProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2018,7 +2018,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/enclosingInfo") @TestMetadata("compiler/testData/codegen/boxInline/enclosingInfo")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class EnclosingInfo extends AbstractFirBlackBoxInlineCodegenTest { public class EnclosingInfo {
@Test @Test
public void testAllFilesPresentInEnclosingInfo() throws Exception { public void testAllFilesPresentInEnclosingInfo() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enclosingInfo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enclosingInfo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2070,7 +2070,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/enum") @TestMetadata("compiler/testData/codegen/boxInline/enum")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Enum extends AbstractFirBlackBoxInlineCodegenTest { public class Enum {
@Test @Test
public void testAllFilesPresentInEnum() throws Exception { public void testAllFilesPresentInEnum() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enum"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enum"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2158,7 +2158,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/functionExpression") @TestMetadata("compiler/testData/codegen/boxInline/functionExpression")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FunctionExpression extends AbstractFirBlackBoxInlineCodegenTest { public class FunctionExpression {
@Test @Test
public void testAllFilesPresentInFunctionExpression() throws Exception { public void testAllFilesPresentInFunctionExpression() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/functionExpression"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/functionExpression"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2174,7 +2174,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineClasses extends AbstractFirBlackBoxInlineCodegenTest { public class InlineClasses {
@Test @Test
public void testAllFilesPresentInInlineClasses() throws Exception { public void testAllFilesPresentInInlineClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2231,7 +2231,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class UnboxGenericParameter extends AbstractFirBlackBoxInlineCodegenTest { public class UnboxGenericParameter {
@Test @Test
public void testAllFilesPresentInUnboxGenericParameter() throws Exception { public void testAllFilesPresentInUnboxGenericParameter() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2240,7 +2240,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FunInterface extends AbstractFirBlackBoxInlineCodegenTest { public class FunInterface {
@Test @Test
public void testAllFilesPresentInFunInterface() throws Exception { public void testAllFilesPresentInFunInterface() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2286,7 +2286,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Lambda extends AbstractFirBlackBoxInlineCodegenTest { public class Lambda {
@Test @Test
public void testAllFilesPresentInLambda() throws Exception { public void testAllFilesPresentInLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2332,7 +2332,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ObjectLiteral extends AbstractFirBlackBoxInlineCodegenTest { public class ObjectLiteral {
@Test @Test
public void testAllFilesPresentInObjectLiteral() throws Exception { public void testAllFilesPresentInObjectLiteral() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2380,7 +2380,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/innerClasses") @TestMetadata("compiler/testData/codegen/boxInline/innerClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InnerClasses extends AbstractFirBlackBoxInlineCodegenTest { public class InnerClasses {
@Test @Test
public void testAllFilesPresentInInnerClasses() throws Exception { public void testAllFilesPresentInInnerClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/innerClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/innerClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2408,7 +2408,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/jvmName") @TestMetadata("compiler/testData/codegen/boxInline/jvmName")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class JvmName extends AbstractFirBlackBoxInlineCodegenTest { public class JvmName {
@Test @Test
public void testAllFilesPresentInJvmName() throws Exception { public void testAllFilesPresentInJvmName() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2424,7 +2424,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/jvmPackageName") @TestMetadata("compiler/testData/codegen/boxInline/jvmPackageName")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class JvmPackageName extends AbstractFirBlackBoxInlineCodegenTest { public class JvmPackageName {
@Test @Test
public void testAllFilesPresentInJvmPackageName() throws Exception { public void testAllFilesPresentInJvmPackageName() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmPackageName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmPackageName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2440,7 +2440,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/lambdaClassClash") @TestMetadata("compiler/testData/codegen/boxInline/lambdaClassClash")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LambdaClassClash extends AbstractFirBlackBoxInlineCodegenTest { public class LambdaClassClash {
@Test @Test
public void testAllFilesPresentInLambdaClassClash() throws Exception { public void testAllFilesPresentInLambdaClassClash() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaClassClash"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaClassClash"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2462,7 +2462,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/lambdaTransformation") @TestMetadata("compiler/testData/codegen/boxInline/lambdaTransformation")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LambdaTransformation extends AbstractFirBlackBoxInlineCodegenTest { public class LambdaTransformation {
@Test @Test
public void testAllFilesPresentInLambdaTransformation() throws Exception { public void testAllFilesPresentInLambdaTransformation() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaTransformation"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaTransformation"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2508,7 +2508,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/localFunInLambda") @TestMetadata("compiler/testData/codegen/boxInline/localFunInLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LocalFunInLambda extends AbstractFirBlackBoxInlineCodegenTest { public class LocalFunInLambda {
@Test @Test
public void testAllFilesPresentInLocalFunInLambda() throws Exception { public void testAllFilesPresentInLocalFunInLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/localFunInLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/localFunInLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2542,7 +2542,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multiModule") @TestMetadata("compiler/testData/codegen/boxInline/multiModule")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MultiModule extends AbstractFirBlackBoxInlineCodegenTest { public class MultiModule {
@Test @Test
public void testAllFilesPresentInMultiModule() throws Exception { public void testAllFilesPresentInMultiModule() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2558,7 +2558,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multifileClasses") @TestMetadata("compiler/testData/codegen/boxInline/multifileClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MultifileClasses extends AbstractFirBlackBoxInlineCodegenTest { public class MultifileClasses {
@Test @Test
public void testAllFilesPresentInMultifileClasses() throws Exception { public void testAllFilesPresentInMultifileClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multifileClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multifileClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2586,7 +2586,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multiplatform") @TestMetadata("compiler/testData/codegen/boxInline/multiplatform")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Multiplatform extends AbstractFirBlackBoxInlineCodegenTest { public class Multiplatform {
@Test @Test
public void testAllFilesPresentInMultiplatform() throws Exception { public void testAllFilesPresentInMultiplatform() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2595,7 +2595,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multiplatform/defaultArguments") @TestMetadata("compiler/testData/codegen/boxInline/multiplatform/defaultArguments")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultArguments extends AbstractFirBlackBoxInlineCodegenTest { public class DefaultArguments {
@Test @Test
public void testAllFilesPresentInDefaultArguments() throws Exception { public void testAllFilesPresentInDefaultArguments() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform/defaultArguments"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform/defaultArguments"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2612,7 +2612,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/noInline") @TestMetadata("compiler/testData/codegen/boxInline/noInline")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NoInline extends AbstractFirBlackBoxInlineCodegenTest { public class NoInline {
@Test @Test
public void testAllFilesPresentInNoInline() throws Exception { public void testAllFilesPresentInNoInline() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/noInline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/noInline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2664,7 +2664,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NonLocalReturns extends AbstractFirBlackBoxInlineCodegenTest { public class NonLocalReturns {
@Test @Test
public void testAllFilesPresentInNonLocalReturns() throws Exception { public void testAllFilesPresentInNonLocalReturns() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2805,7 +2805,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Deparenthesize extends AbstractFirBlackBoxInlineCodegenTest { public class Deparenthesize {
@Test @Test
public void testAllFilesPresentInDeparenthesize() throws Exception { public void testAllFilesPresentInDeparenthesize() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2827,7 +2827,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TryFinally extends AbstractFirBlackBoxInlineCodegenTest { public class TryFinally {
@Test @Test
public void testAllFilesPresentInTryFinally() throws Exception { public void testAllFilesPresentInTryFinally() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2914,7 +2914,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallSite extends AbstractFirBlackBoxInlineCodegenTest { public class CallSite {
@Test @Test
public void testAllFilesPresentInCallSite() throws Exception { public void testAllFilesPresentInCallSite() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2960,7 +2960,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Chained extends AbstractFirBlackBoxInlineCodegenTest { public class Chained {
@Test @Test
public void testAllFilesPresentInChained() throws Exception { public void testAllFilesPresentInChained() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3018,7 +3018,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DeclSite extends AbstractFirBlackBoxInlineCodegenTest { public class DeclSite {
@Test @Test
public void testAllFilesPresentInDeclSite() throws Exception { public void testAllFilesPresentInDeclSite() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3100,7 +3100,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ExceptionTable extends AbstractFirBlackBoxInlineCodegenTest { public class ExceptionTable {
@Test @Test
public void testAllFilesPresentInExceptionTable() throws Exception { public void testAllFilesPresentInExceptionTable() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3236,7 +3236,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Variables extends AbstractFirBlackBoxInlineCodegenTest { public class Variables {
@Test @Test
public void testAllFilesPresentInVariables() throws Exception { public void testAllFilesPresentInVariables() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3254,7 +3254,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/optimizations") @TestMetadata("compiler/testData/codegen/boxInline/optimizations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Optimizations extends AbstractFirBlackBoxInlineCodegenTest { public class Optimizations {
@Test @Test
public void testAllFilesPresentInOptimizations() throws Exception { public void testAllFilesPresentInOptimizations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/optimizations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/optimizations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3270,7 +3270,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/private") @TestMetadata("compiler/testData/codegen/boxInline/private")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Private extends AbstractFirBlackBoxInlineCodegenTest { public class Private {
@Test @Test
@TestMetadata("accessorForConst.kt") @TestMetadata("accessorForConst.kt")
public void testAccessorForConst() throws Exception { public void testAccessorForConst() throws Exception {
@@ -3352,7 +3352,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/property") @TestMetadata("compiler/testData/codegen/boxInline/property")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Property extends AbstractFirBlackBoxInlineCodegenTest { public class Property {
@Test @Test
public void testAllFilesPresentInProperty() throws Exception { public void testAllFilesPresentInProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/property"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/property"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3440,7 +3440,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified") @TestMetadata("compiler/testData/codegen/boxInline/reified")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Reified extends AbstractFirBlackBoxInlineCodegenTest { public class Reified {
@Test @Test
public void testAllFilesPresentInReified() throws Exception { public void testAllFilesPresentInReified() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3599,7 +3599,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/checkCast") @TestMetadata("compiler/testData/codegen/boxInline/reified/checkCast")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CheckCast extends AbstractFirBlackBoxInlineCodegenTest { public class CheckCast {
@Test @Test
public void testAllFilesPresentInCheckCast() throws Exception { public void testAllFilesPresentInCheckCast() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/checkCast"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/checkCast"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3669,7 +3669,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/defaultLambda") @TestMetadata("compiler/testData/codegen/boxInline/reified/defaultLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultLambda extends AbstractFirBlackBoxInlineCodegenTest { public class DefaultLambda {
@Test @Test
public void testAllFilesPresentInDefaultLambda() throws Exception { public void testAllFilesPresentInDefaultLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3727,7 +3727,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/isCheck") @TestMetadata("compiler/testData/codegen/boxInline/reified/isCheck")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class IsCheck extends AbstractFirBlackBoxInlineCodegenTest { public class IsCheck {
@Test @Test
public void testAllFilesPresentInIsCheck() throws Exception { public void testAllFilesPresentInIsCheck() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/isCheck"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/isCheck"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3756,7 +3756,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/signature") @TestMetadata("compiler/testData/codegen/boxInline/signature")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Signature extends AbstractFirBlackBoxInlineCodegenTest { public class Signature {
@Test @Test
public void testAllFilesPresentInSignature() throws Exception { public void testAllFilesPresentInSignature() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/signature"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/signature"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3820,7 +3820,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/simple") @TestMetadata("compiler/testData/codegen/boxInline/simple")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Simple extends AbstractFirBlackBoxInlineCodegenTest { public class Simple {
@Test @Test
public void testAllFilesPresentInSimple() throws Exception { public void testAllFilesPresentInSimple() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/simple"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/simple"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3974,7 +3974,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap") @TestMetadata("compiler/testData/codegen/boxInline/smap")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Smap extends AbstractFirBlackBoxInlineCodegenTest { public class Smap {
@Test @Test
public void testAllFilesPresentInSmap() throws Exception { public void testAllFilesPresentInSmap() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4097,7 +4097,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/anonymous") @TestMetadata("compiler/testData/codegen/boxInline/smap/anonymous")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Anonymous extends AbstractFirBlackBoxInlineCodegenTest { public class Anonymous {
@Test @Test
public void testAllFilesPresentInAnonymous() throws Exception { public void testAllFilesPresentInAnonymous() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/anonymous"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/anonymous"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4167,7 +4167,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/defaultLambda") @TestMetadata("compiler/testData/codegen/boxInline/smap/defaultLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultLambda extends AbstractFirBlackBoxInlineCodegenTest { public class DefaultLambda {
@Test @Test
public void testAllFilesPresentInDefaultLambda() throws Exception { public void testAllFilesPresentInDefaultLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4231,7 +4231,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/inlineOnly") @TestMetadata("compiler/testData/codegen/boxInline/smap/inlineOnly")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineOnly extends AbstractFirBlackBoxInlineCodegenTest { public class InlineOnly {
@Test @Test
public void testAllFilesPresentInInlineOnly() throws Exception { public void testAllFilesPresentInInlineOnly() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/inlineOnly"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/inlineOnly"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4277,7 +4277,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/newsmap") @TestMetadata("compiler/testData/codegen/boxInline/smap/newsmap")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Newsmap extends AbstractFirBlackBoxInlineCodegenTest { public class Newsmap {
@Test @Test
public void testAllFilesPresentInNewsmap() throws Exception { public void testAllFilesPresentInNewsmap() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/newsmap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/newsmap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4311,7 +4311,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/resolve") @TestMetadata("compiler/testData/codegen/boxInline/smap/resolve")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Resolve extends AbstractFirBlackBoxInlineCodegenTest { public class Resolve {
@Test @Test
public void testAllFilesPresentInResolve() throws Exception { public void testAllFilesPresentInResolve() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/resolve"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/resolve"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4334,7 +4334,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/special") @TestMetadata("compiler/testData/codegen/boxInline/special")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Special extends AbstractFirBlackBoxInlineCodegenTest { public class Special {
@Test @Test
public void testAllFilesPresentInSpecial() throws Exception { public void testAllFilesPresentInSpecial() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/special"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/special"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4398,7 +4398,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/stackOnReturn") @TestMetadata("compiler/testData/codegen/boxInline/stackOnReturn")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StackOnReturn extends AbstractFirBlackBoxInlineCodegenTest { public class StackOnReturn {
@Test @Test
public void testAllFilesPresentInStackOnReturn() throws Exception { public void testAllFilesPresentInStackOnReturn() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/stackOnReturn"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/stackOnReturn"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4504,7 +4504,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend") @TestMetadata("compiler/testData/codegen/boxInline/suspend")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Suspend extends AbstractFirBlackBoxInlineCodegenTest { public class Suspend {
@Test @Test
public void testAllFilesPresentInSuspend() throws Exception { public void testAllFilesPresentInSuspend() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4693,7 +4693,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/callableReference") @TestMetadata("compiler/testData/codegen/boxInline/suspend/callableReference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReference extends AbstractFirBlackBoxInlineCodegenTest { public class CallableReference {
@Test @Test
public void testAllFilesPresentInCallableReference() throws Exception { public void testAllFilesPresentInCallableReference() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/callableReference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/callableReference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4733,7 +4733,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/defaultParameter") @TestMetadata("compiler/testData/codegen/boxInline/suspend/defaultParameter")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultParameter extends AbstractFirBlackBoxInlineCodegenTest { public class DefaultParameter {
@Test @Test
public void testAllFilesPresentInDefaultParameter() throws Exception { public void testAllFilesPresentInDefaultParameter() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/defaultParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/defaultParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4767,7 +4767,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineClass") @TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineClass")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineClass extends AbstractFirBlackBoxInlineCodegenTest { public class InlineClass {
@Test @Test
public void testAllFilesPresentInInlineClass() throws Exception { public void testAllFilesPresentInInlineClass() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4789,7 +4789,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline") @TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineUsedAsNoinline extends AbstractFirBlackBoxInlineCodegenTest { public class InlineUsedAsNoinline {
@Test @Test
public void testAllFilesPresentInInlineUsedAsNoinline() throws Exception { public void testAllFilesPresentInInlineUsedAsNoinline() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4823,7 +4823,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/receiver") @TestMetadata("compiler/testData/codegen/boxInline/suspend/receiver")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Receiver extends AbstractFirBlackBoxInlineCodegenTest { public class Receiver {
@Test @Test
public void testAllFilesPresentInReceiver() throws Exception { public void testAllFilesPresentInReceiver() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/receiver"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/receiver"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4881,7 +4881,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/stateMachine") @TestMetadata("compiler/testData/codegen/boxInline/suspend/stateMachine")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StateMachine extends AbstractFirBlackBoxInlineCodegenTest { public class StateMachine {
@Test @Test
public void testAllFilesPresentInStateMachine() throws Exception { public void testAllFilesPresentInStateMachine() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/stateMachine"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/stateMachine"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5030,7 +5030,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors") @TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class SyntheticAccessors extends AbstractFirBlackBoxInlineCodegenTest { public class SyntheticAccessors {
@Test @Test
public void testAllFilesPresentInSyntheticAccessors() throws Exception { public void testAllFilesPresentInSyntheticAccessors() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5087,7 +5087,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda") @TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class WithinInlineLambda extends AbstractFirBlackBoxInlineCodegenTest { public class WithinInlineLambda {
@Test @Test
public void testAllFilesPresentInWithinInlineLambda() throws Exception { public void testAllFilesPresentInWithinInlineLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5152,7 +5152,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/trait") @TestMetadata("compiler/testData/codegen/boxInline/trait")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Trait extends AbstractFirBlackBoxInlineCodegenTest { public class Trait {
@Test @Test
public void testAllFilesPresentInTrait() throws Exception { public void testAllFilesPresentInTrait() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/trait"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/trait"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5168,7 +5168,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/tryCatchFinally") @TestMetadata("compiler/testData/codegen/boxInline/tryCatchFinally")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TryCatchFinally extends AbstractFirBlackBoxInlineCodegenTest { public class TryCatchFinally {
@Test @Test
public void testAllFilesPresentInTryCatchFinally() throws Exception { public void testAllFilesPresentInTryCatchFinally() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/tryCatchFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/tryCatchFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5202,7 +5202,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/varargs") @TestMetadata("compiler/testData/codegen/boxInline/varargs")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Varargs extends AbstractFirBlackBoxInlineCodegenTest { public class Varargs {
@Test @Test
public void testAllFilesPresentInVarargs() throws Exception { public void testAllFilesPresentInVarargs() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/varargs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/varargs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -520,7 +520,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/argumentOrder") @TestMetadata("compiler/testData/codegen/bytecodeText/argumentOrder")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ArgumentOrder extends AbstractFirBytecodeTextTest { public class ArgumentOrder {
@Test @Test
public void testAllFilesPresentInArgumentOrder() throws Exception { public void testAllFilesPresentInArgumentOrder() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/argumentOrder"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/argumentOrder"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -542,7 +542,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/assert") @TestMetadata("compiler/testData/codegen/bytecodeText/assert")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Assert extends AbstractFirBytecodeTextTest { public class Assert {
@Test @Test
public void testAllFilesPresentInAssert() throws Exception { public void testAllFilesPresentInAssert() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/assert"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/assert"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -582,7 +582,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/boxing") @TestMetadata("compiler/testData/codegen/bytecodeText/boxing")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Boxing extends AbstractFirBytecodeTextTest { public class Boxing {
@Test @Test
public void testAllFilesPresentInBoxing() throws Exception { public void testAllFilesPresentInBoxing() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/boxing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/boxing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -610,7 +610,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/boxingOptimization") @TestMetadata("compiler/testData/codegen/bytecodeText/boxingOptimization")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class BoxingOptimization extends AbstractFirBytecodeTextTest { public class BoxingOptimization {
@Test @Test
public void testAllFilesPresentInBoxingOptimization() throws Exception { public void testAllFilesPresentInBoxingOptimization() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/boxingOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/boxingOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -770,7 +770,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/builtinFunctions") @TestMetadata("compiler/testData/codegen/bytecodeText/builtinFunctions")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class BuiltinFunctions extends AbstractFirBytecodeTextTest { public class BuiltinFunctions {
@Test @Test
public void testAllFilesPresentInBuiltinFunctions() throws Exception { public void testAllFilesPresentInBuiltinFunctions() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/builtinFunctions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/builtinFunctions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -803,7 +803,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/builtinFunctions/genericParameterBridge") @TestMetadata("compiler/testData/codegen/bytecodeText/builtinFunctions/genericParameterBridge")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class GenericParameterBridge extends AbstractFirBytecodeTextTest { public class GenericParameterBridge {
@Test @Test
@TestMetadata("abstractList.kt") @TestMetadata("abstractList.kt")
public void testAbstractList() throws Exception { public void testAbstractList() throws Exception {
@@ -856,7 +856,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/callableReference") @TestMetadata("compiler/testData/codegen/bytecodeText/callableReference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReference extends AbstractFirBytecodeTextTest { public class CallableReference {
@Test @Test
public void testAllFilesPresentInCallableReference() throws Exception { public void testAllFilesPresentInCallableReference() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/callableReference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/callableReference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -920,7 +920,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/capturedVarsOptimization") @TestMetadata("compiler/testData/codegen/bytecodeText/capturedVarsOptimization")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CapturedVarsOptimization extends AbstractFirBytecodeTextTest { public class CapturedVarsOptimization {
@Test @Test
public void testAllFilesPresentInCapturedVarsOptimization() throws Exception { public void testAllFilesPresentInCapturedVarsOptimization() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/capturedVarsOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/capturedVarsOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -996,7 +996,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/checkcast") @TestMetadata("compiler/testData/codegen/bytecodeText/checkcast")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Checkcast extends AbstractFirBytecodeTextTest { public class Checkcast {
@Test @Test
public void testAllFilesPresentInCheckcast() throws Exception { public void testAllFilesPresentInCheckcast() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/checkcast"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/checkcast"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1030,7 +1030,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coercionToUnitOptimization") @TestMetadata("compiler/testData/codegen/bytecodeText/coercionToUnitOptimization")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CoercionToUnitOptimization extends AbstractFirBytecodeTextTest { public class CoercionToUnitOptimization {
@Test @Test
public void testAllFilesPresentInCoercionToUnitOptimization() throws Exception { public void testAllFilesPresentInCoercionToUnitOptimization() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coercionToUnitOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coercionToUnitOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1094,7 +1094,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/companion") @TestMetadata("compiler/testData/codegen/bytecodeText/companion")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Companion extends AbstractFirBytecodeTextTest { public class Companion {
@Test @Test
public void testAllFilesPresentInCompanion() throws Exception { public void testAllFilesPresentInCompanion() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/companion"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/companion"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1188,7 +1188,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/conditions") @TestMetadata("compiler/testData/codegen/bytecodeText/conditions")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Conditions extends AbstractFirBytecodeTextTest { public class Conditions {
@Test @Test
public void testAllFilesPresentInConditions() throws Exception { public void testAllFilesPresentInConditions() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/conditions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/conditions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1366,7 +1366,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/constProperty") @TestMetadata("compiler/testData/codegen/bytecodeText/constProperty")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ConstProperty extends AbstractFirBytecodeTextTest { public class ConstProperty {
@Test @Test
public void testAllFilesPresentInConstProperty() throws Exception { public void testAllFilesPresentInConstProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1406,7 +1406,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/constantConditions") @TestMetadata("compiler/testData/codegen/bytecodeText/constantConditions")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ConstantConditions extends AbstractFirBytecodeTextTest { public class ConstantConditions {
@Test @Test
public void testAllFilesPresentInConstantConditions() throws Exception { public void testAllFilesPresentInConstantConditions() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constantConditions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constantConditions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1446,7 +1446,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/constants") @TestMetadata("compiler/testData/codegen/bytecodeText/constants")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Constants extends AbstractFirBytecodeTextTest { public class Constants {
@Test @Test
public void testAllFilesPresentInConstants() throws Exception { public void testAllFilesPresentInConstants() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constants"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constants"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1534,7 +1534,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/constructors") @TestMetadata("compiler/testData/codegen/bytecodeText/constructors")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Constructors extends AbstractFirBytecodeTextTest { public class Constructors {
@Test @Test
public void testAllFilesPresentInConstructors() throws Exception { public void testAllFilesPresentInConstructors() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constructors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constructors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1598,7 +1598,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/controlStructures") @TestMetadata("compiler/testData/codegen/bytecodeText/controlStructures")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ControlStructures extends AbstractFirBytecodeTextTest { public class ControlStructures {
@Test @Test
public void testAllFilesPresentInControlStructures() throws Exception { public void testAllFilesPresentInControlStructures() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/controlStructures"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/controlStructures"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1620,7 +1620,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines") @TestMetadata("compiler/testData/codegen/bytecodeText/coroutines")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Coroutines extends AbstractFirBytecodeTextTest { public class Coroutines {
@Test @Test
public void testAllFilesPresentInCoroutines() throws Exception { public void testAllFilesPresentInCoroutines() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1695,7 +1695,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/cleanup") @TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/cleanup")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Cleanup extends AbstractFirBytecodeTextTest { public class Cleanup {
@Test @Test
public void testAllFilesPresentInCleanup() throws Exception { public void testAllFilesPresentInCleanup() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/cleanup"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/cleanup"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1753,7 +1753,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/debug") @TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/debug")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Debug extends AbstractFirBytecodeTextTest { public class Debug {
@Test @Test
public void testAllFilesPresentInDebug() throws Exception { public void testAllFilesPresentInDebug() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/debug"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/debug"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1793,7 +1793,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/destructuringInLambda") @TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/destructuringInLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DestructuringInLambda extends AbstractFirBytecodeTextTest { public class DestructuringInLambda {
@Test @Test
public void testAllFilesPresentInDestructuringInLambda() throws Exception { public void testAllFilesPresentInDestructuringInLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/destructuringInLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/destructuringInLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1809,7 +1809,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/inlineClasses") @TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/inlineClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineClasses extends AbstractFirBytecodeTextTest { public class InlineClasses {
@Test @Test
public void testAllFilesPresentInInlineClasses() throws Exception { public void testAllFilesPresentInInlineClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1861,7 +1861,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/intLikeVarSpilling") @TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/intLikeVarSpilling")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class IntLikeVarSpilling extends AbstractFirBytecodeTextTest { public class IntLikeVarSpilling {
@Test @Test
public void testAllFilesPresentInIntLikeVarSpilling() throws Exception { public void testAllFilesPresentInIntLikeVarSpilling() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/intLikeVarSpilling"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/intLikeVarSpilling"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1931,7 +1931,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/stateMachine") @TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/stateMachine")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StateMachine extends AbstractFirBytecodeTextTest { public class StateMachine {
@Test @Test
public void testAllFilesPresentInStateMachine() throws Exception { public void testAllFilesPresentInStateMachine() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/stateMachine"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/stateMachine"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1954,7 +1954,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/deadCodeElimination") @TestMetadata("compiler/testData/codegen/bytecodeText/deadCodeElimination")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DeadCodeElimination extends AbstractFirBytecodeTextTest { public class DeadCodeElimination {
@Test @Test
public void testAllFilesPresentInDeadCodeElimination() throws Exception { public void testAllFilesPresentInDeadCodeElimination() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/deadCodeElimination"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/deadCodeElimination"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2030,7 +2030,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/defaultArguments") @TestMetadata("compiler/testData/codegen/bytecodeText/defaultArguments")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultArguments extends AbstractFirBytecodeTextTest { public class DefaultArguments {
@Test @Test
public void testAllFilesPresentInDefaultArguments() throws Exception { public void testAllFilesPresentInDefaultArguments() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/defaultArguments"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/defaultArguments"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2100,7 +2100,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/directInvoke") @TestMetadata("compiler/testData/codegen/bytecodeText/directInvoke")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DirectInvoke extends AbstractFirBytecodeTextTest { public class DirectInvoke {
@Test @Test
public void testAllFilesPresentInDirectInvoke() throws Exception { public void testAllFilesPresentInDirectInvoke() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/directInvoke"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/directInvoke"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2128,7 +2128,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/disabledOptimizations") @TestMetadata("compiler/testData/codegen/bytecodeText/disabledOptimizations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DisabledOptimizations extends AbstractFirBytecodeTextTest { public class DisabledOptimizations {
@Test @Test
public void testAllFilesPresentInDisabledOptimizations() throws Exception { public void testAllFilesPresentInDisabledOptimizations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/disabledOptimizations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/disabledOptimizations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2174,7 +2174,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/enum") @TestMetadata("compiler/testData/codegen/bytecodeText/enum")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Enum extends AbstractFirBytecodeTextTest { public class Enum {
@Test @Test
public void testAllFilesPresentInEnum() throws Exception { public void testAllFilesPresentInEnum() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/enum"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/enum"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2208,7 +2208,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/exclExcl") @TestMetadata("compiler/testData/codegen/bytecodeText/exclExcl")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ExclExcl extends AbstractFirBytecodeTextTest { public class ExclExcl {
@Test @Test
public void testAllFilesPresentInExclExcl() throws Exception { public void testAllFilesPresentInExclExcl() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/exclExcl"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/exclExcl"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2224,7 +2224,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/fieldsForCapturedValues") @TestMetadata("compiler/testData/codegen/bytecodeText/fieldsForCapturedValues")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FieldsForCapturedValues extends AbstractFirBytecodeTextTest { public class FieldsForCapturedValues {
@Test @Test
public void testAllFilesPresentInFieldsForCapturedValues() throws Exception { public void testAllFilesPresentInFieldsForCapturedValues() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/fieldsForCapturedValues"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/fieldsForCapturedValues"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2288,7 +2288,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForLoop extends AbstractFirBytecodeTextTest { public class ForLoop {
@Test @Test
public void testAllFilesPresentInForLoop() throws Exception { public void testAllFilesPresentInForLoop() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2447,7 +2447,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInArrayWithIndex") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInArrayWithIndex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInArrayWithIndex extends AbstractFirBytecodeTextTest { public class ForInArrayWithIndex {
@Test @Test
public void testAllFilesPresentInForInArrayWithIndex() throws Exception { public void testAllFilesPresentInForInArrayWithIndex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInArrayWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInArrayWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2487,7 +2487,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInCharSequenceWithIndex") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInCharSequenceWithIndex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInCharSequenceWithIndex extends AbstractFirBytecodeTextTest { public class ForInCharSequenceWithIndex {
@Test @Test
public void testAllFilesPresentInForInCharSequenceWithIndex() throws Exception { public void testAllFilesPresentInForInCharSequenceWithIndex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInCharSequenceWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInCharSequenceWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2533,7 +2533,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInIndices") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInIndices")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInIndices extends AbstractFirBytecodeTextTest { public class ForInIndices {
@Test @Test
public void testAllFilesPresentInForInIndices() throws Exception { public void testAllFilesPresentInForInIndices() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInIndices"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInIndices"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2597,7 +2597,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInIterableWithIndex") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInIterableWithIndex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInIterableWithIndex extends AbstractFirBytecodeTextTest { public class ForInIterableWithIndex {
@Test @Test
public void testAllFilesPresentInForInIterableWithIndex() throws Exception { public void testAllFilesPresentInForInIterableWithIndex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInIterableWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInIterableWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2643,7 +2643,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInProgressionWithIndex") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInProgressionWithIndex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInProgressionWithIndex extends AbstractFirBytecodeTextTest { public class ForInProgressionWithIndex {
@Test @Test
public void testAllFilesPresentInForInProgressionWithIndex() throws Exception { public void testAllFilesPresentInForInProgressionWithIndex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInProgressionWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInProgressionWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2725,7 +2725,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInReversed") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInReversed")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInReversed extends AbstractFirBytecodeTextTest { public class ForInReversed {
@Test @Test
public void testAllFilesPresentInForInReversed() throws Exception { public void testAllFilesPresentInForInReversed() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInReversed"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInReversed"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2813,7 +2813,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInSequenceWithIndex") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInSequenceWithIndex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInSequenceWithIndex extends AbstractFirBytecodeTextTest { public class ForInSequenceWithIndex {
@Test @Test
public void testAllFilesPresentInForInSequenceWithIndex() throws Exception { public void testAllFilesPresentInForInSequenceWithIndex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInSequenceWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInSequenceWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2865,7 +2865,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInUntil") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInUntil")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInUntil extends AbstractFirBytecodeTextTest { public class ForInUntil {
@Test @Test
public void testAllFilesPresentInForInUntil() throws Exception { public void testAllFilesPresentInForInUntil() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInUntil"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInUntil"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2929,7 +2929,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/stepped") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/stepped")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Stepped extends AbstractFirBytecodeTextTest { public class Stepped {
@Test @Test
public void testAllFilesPresentInStepped() throws Exception { public void testAllFilesPresentInStepped() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/stepped"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/stepped"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3023,7 +3023,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/unsigned") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/unsigned")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Unsigned extends AbstractFirBytecodeTextTest { public class Unsigned {
@Test @Test
public void testAllFilesPresentInUnsigned() throws Exception { public void testAllFilesPresentInUnsigned() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/unsigned"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/unsigned"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3124,7 +3124,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/hashCode") @TestMetadata("compiler/testData/codegen/bytecodeText/hashCode")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class HashCode extends AbstractFirBytecodeTextTest { public class HashCode {
@Test @Test
public void testAllFilesPresentInHashCode() throws Exception { public void testAllFilesPresentInHashCode() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/hashCode"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/hashCode"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3146,7 +3146,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/ieee754") @TestMetadata("compiler/testData/codegen/bytecodeText/ieee754")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Ieee754 extends AbstractFirBytecodeTextTest { public class Ieee754 {
@Test @Test
public void testAllFilesPresentInIeee754() throws Exception { public void testAllFilesPresentInIeee754() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/ieee754"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/ieee754"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3204,7 +3204,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/inline") @TestMetadata("compiler/testData/codegen/bytecodeText/inline")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Inline extends AbstractFirBytecodeTextTest { public class Inline {
@Test @Test
public void testAllFilesPresentInInline() throws Exception { public void testAllFilesPresentInInline() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/inline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/inline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3327,7 +3327,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/inline/property") @TestMetadata("compiler/testData/codegen/bytecodeText/inline/property")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Property extends AbstractFirBytecodeTextTest { public class Property {
@Test @Test
public void testAllFilesPresentInProperty() throws Exception { public void testAllFilesPresentInProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/inline/property"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/inline/property"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3344,7 +3344,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/inlineClasses") @TestMetadata("compiler/testData/codegen/bytecodeText/inlineClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineClasses extends AbstractFirBytecodeTextTest { public class InlineClasses {
@Test @Test
public void testAllFilesPresentInInlineClasses() throws Exception { public void testAllFilesPresentInInlineClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3756,7 +3756,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/innerClasses") @TestMetadata("compiler/testData/codegen/bytecodeText/innerClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InnerClasses extends AbstractFirBytecodeTextTest { public class InnerClasses {
@Test @Test
public void testAllFilesPresentInInnerClasses() throws Exception { public void testAllFilesPresentInInnerClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/innerClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/innerClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3772,7 +3772,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/interfaces") @TestMetadata("compiler/testData/codegen/bytecodeText/interfaces")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Interfaces extends AbstractFirBytecodeTextTest { public class Interfaces {
@Test @Test
@TestMetadata("addedInterfaceBridge.kt") @TestMetadata("addedInterfaceBridge.kt")
public void testAddedInterfaceBridge() throws Exception { public void testAddedInterfaceBridge() throws Exception {
@@ -3812,7 +3812,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/intrinsics") @TestMetadata("compiler/testData/codegen/bytecodeText/intrinsics")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Intrinsics extends AbstractFirBytecodeTextTest { public class Intrinsics {
@Test @Test
public void testAllFilesPresentInIntrinsics() throws Exception { public void testAllFilesPresentInIntrinsics() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/intrinsics"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/intrinsics"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3834,7 +3834,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/intrinsicsCompare") @TestMetadata("compiler/testData/codegen/bytecodeText/intrinsicsCompare")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class IntrinsicsCompare extends AbstractFirBytecodeTextTest { public class IntrinsicsCompare {
@Test @Test
public void testAllFilesPresentInIntrinsicsCompare() throws Exception { public void testAllFilesPresentInIntrinsicsCompare() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/intrinsicsCompare"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/intrinsicsCompare"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3904,7 +3904,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/intrinsicsTrim") @TestMetadata("compiler/testData/codegen/bytecodeText/intrinsicsTrim")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class IntrinsicsTrim extends AbstractFirBytecodeTextTest { public class IntrinsicsTrim {
@Test @Test
public void testAllFilesPresentInIntrinsicsTrim() throws Exception { public void testAllFilesPresentInIntrinsicsTrim() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/intrinsicsTrim"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/intrinsicsTrim"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3938,7 +3938,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/invokedynamic") @TestMetadata("compiler/testData/codegen/bytecodeText/invokedynamic")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Invokedynamic extends AbstractFirBytecodeTextTest { public class Invokedynamic {
@Test @Test
public void testAllFilesPresentInInvokedynamic() throws Exception { public void testAllFilesPresentInInvokedynamic() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/invokedynamic"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/invokedynamic"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3954,7 +3954,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/jvm8") @TestMetadata("compiler/testData/codegen/bytecodeText/jvm8")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Jvm8 extends AbstractFirBytecodeTextTest { public class Jvm8 {
@Test @Test
public void testAllFilesPresentInJvm8() throws Exception { public void testAllFilesPresentInJvm8() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3963,7 +3963,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/hashCode") @TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/hashCode")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class HashCode extends AbstractFirBytecodeTextTest { public class HashCode {
@Test @Test
public void testAllFilesPresentInHashCode() throws Exception { public void testAllFilesPresentInHashCode() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/hashCode"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/hashCode"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3985,7 +3985,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault") @TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class JvmDefault extends AbstractFirBytecodeTextTest { public class JvmDefault {
@Test @Test
public void testAllFilesPresentInJvmDefault() throws Exception { public void testAllFilesPresentInJvmDefault() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3994,7 +3994,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/allCompatibility") @TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/allCompatibility")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class AllCompatibility extends AbstractFirBytecodeTextTest { public class AllCompatibility {
@Test @Test
public void testAllFilesPresentInAllCompatibility() throws Exception { public void testAllFilesPresentInAllCompatibility() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/allCompatibility"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/allCompatibility"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4034,7 +4034,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/compatibility") @TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/compatibility")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Compatibility extends AbstractFirBytecodeTextTest { public class Compatibility {
@Test @Test
public void testAllFilesPresentInCompatibility() throws Exception { public void testAllFilesPresentInCompatibility() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/compatibility"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/compatibility"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4076,7 +4076,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/lazyCodegen") @TestMetadata("compiler/testData/codegen/bytecodeText/lazyCodegen")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LazyCodegen extends AbstractFirBytecodeTextTest { public class LazyCodegen {
@Test @Test
public void testAllFilesPresentInLazyCodegen() throws Exception { public void testAllFilesPresentInLazyCodegen() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/lazyCodegen"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/lazyCodegen"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4128,7 +4128,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/lineNumbers") @TestMetadata("compiler/testData/codegen/bytecodeText/lineNumbers")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LineNumbers extends AbstractFirBytecodeTextTest { public class LineNumbers {
@Test @Test
public void testAllFilesPresentInLineNumbers() throws Exception { public void testAllFilesPresentInLineNumbers() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/lineNumbers"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/lineNumbers"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4210,7 +4210,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/localInitializationLVT") @TestMetadata("compiler/testData/codegen/bytecodeText/localInitializationLVT")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LocalInitializationLVT extends AbstractFirBytecodeTextTest { public class LocalInitializationLVT {
@Test @Test
public void testAllFilesPresentInLocalInitializationLVT() throws Exception { public void testAllFilesPresentInLocalInitializationLVT() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/localInitializationLVT"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/localInitializationLVT"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4334,7 +4334,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/mangling") @TestMetadata("compiler/testData/codegen/bytecodeText/mangling")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Mangling extends AbstractFirBytecodeTextTest { public class Mangling {
@Test @Test
public void testAllFilesPresentInMangling() throws Exception { public void testAllFilesPresentInMangling() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/mangling"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/mangling"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4356,7 +4356,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/multifileClasses") @TestMetadata("compiler/testData/codegen/bytecodeText/multifileClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MultifileClasses extends AbstractFirBytecodeTextTest { public class MultifileClasses {
@Test @Test
public void testAllFilesPresentInMultifileClasses() throws Exception { public void testAllFilesPresentInMultifileClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/multifileClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/multifileClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4384,7 +4384,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/notNullAssertions") @TestMetadata("compiler/testData/codegen/bytecodeText/notNullAssertions")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NotNullAssertions extends AbstractFirBytecodeTextTest { public class NotNullAssertions {
@Test @Test
public void testAllFilesPresentInNotNullAssertions() throws Exception { public void testAllFilesPresentInNotNullAssertions() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/notNullAssertions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/notNullAssertions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4460,7 +4460,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/nullCheckOptimization") @TestMetadata("compiler/testData/codegen/bytecodeText/nullCheckOptimization")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NullCheckOptimization extends AbstractFirBytecodeTextTest { public class NullCheckOptimization {
@Test @Test
public void testAllFilesPresentInNullCheckOptimization() throws Exception { public void testAllFilesPresentInNullCheckOptimization() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/nullCheckOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/nullCheckOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4607,7 +4607,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/nullCheckOptimization/localLateinit") @TestMetadata("compiler/testData/codegen/bytecodeText/nullCheckOptimization/localLateinit")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LocalLateinit extends AbstractFirBytecodeTextTest { public class LocalLateinit {
@Test @Test
public void testAllFilesPresentInLocalLateinit() throws Exception { public void testAllFilesPresentInLocalLateinit() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/nullCheckOptimization/localLateinit"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/nullCheckOptimization/localLateinit"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4636,7 +4636,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/optimizedDelegatedProperties") @TestMetadata("compiler/testData/codegen/bytecodeText/optimizedDelegatedProperties")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class OptimizedDelegatedProperties extends AbstractFirBytecodeTextTest { public class OptimizedDelegatedProperties {
@Test @Test
public void testAllFilesPresentInOptimizedDelegatedProperties() throws Exception { public void testAllFilesPresentInOptimizedDelegatedProperties() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/optimizedDelegatedProperties"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/optimizedDelegatedProperties"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4670,7 +4670,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/parameterlessMain") @TestMetadata("compiler/testData/codegen/bytecodeText/parameterlessMain")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ParameterlessMain extends AbstractFirBytecodeTextTest { public class ParameterlessMain {
@Test @Test
public void testAllFilesPresentInParameterlessMain() throws Exception { public void testAllFilesPresentInParameterlessMain() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/parameterlessMain"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/parameterlessMain"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4722,7 +4722,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/properties") @TestMetadata("compiler/testData/codegen/bytecodeText/properties")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Properties extends AbstractFirBytecodeTextTest { public class Properties {
@Test @Test
public void testAllFilesPresentInProperties() throws Exception { public void testAllFilesPresentInProperties() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/properties"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/properties"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4743,7 +4743,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/properties/lateinit") @TestMetadata("compiler/testData/codegen/bytecodeText/properties/lateinit")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Lateinit extends AbstractFirBytecodeTextTest { public class Lateinit {
@Test @Test
public void testAllFilesPresentInLateinit() throws Exception { public void testAllFilesPresentInLateinit() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/properties/lateinit"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/properties/lateinit"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4766,7 +4766,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/ranges") @TestMetadata("compiler/testData/codegen/bytecodeText/ranges")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Ranges extends AbstractFirBytecodeTextTest { public class Ranges {
@Test @Test
public void testAllFilesPresentInRanges() throws Exception { public void testAllFilesPresentInRanges() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/ranges"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/ranges"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4848,7 +4848,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/sam") @TestMetadata("compiler/testData/codegen/bytecodeText/sam")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Sam extends AbstractFirBytecodeTextTest { public class Sam {
@Test @Test
public void testAllFilesPresentInSam() throws Exception { public void testAllFilesPresentInSam() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4894,7 +4894,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/statements") @TestMetadata("compiler/testData/codegen/bytecodeText/statements")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Statements extends AbstractFirBytecodeTextTest { public class Statements {
@Test @Test
public void testAllFilesPresentInStatements() throws Exception { public void testAllFilesPresentInStatements() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/statements"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/statements"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4952,7 +4952,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/staticFields") @TestMetadata("compiler/testData/codegen/bytecodeText/staticFields")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StaticFields extends AbstractFirBytecodeTextTest { public class StaticFields {
@Test @Test
public void testAllFilesPresentInStaticFields() throws Exception { public void testAllFilesPresentInStaticFields() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/staticFields"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/staticFields"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4974,7 +4974,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/storeStackBeforeInline") @TestMetadata("compiler/testData/codegen/bytecodeText/storeStackBeforeInline")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StoreStackBeforeInline extends AbstractFirBytecodeTextTest { public class StoreStackBeforeInline {
@Test @Test
public void testAllFilesPresentInStoreStackBeforeInline() throws Exception { public void testAllFilesPresentInStoreStackBeforeInline() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/storeStackBeforeInline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/storeStackBeforeInline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5014,7 +5014,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/stringOperations") @TestMetadata("compiler/testData/codegen/bytecodeText/stringOperations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StringOperations extends AbstractFirBytecodeTextTest { public class StringOperations {
@Test @Test
public void testAllFilesPresentInStringOperations() throws Exception { public void testAllFilesPresentInStringOperations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/stringOperations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/stringOperations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5216,7 +5216,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/toArray") @TestMetadata("compiler/testData/codegen/bytecodeText/toArray")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ToArray extends AbstractFirBytecodeTextTest { public class ToArray {
@Test @Test
public void testAllFilesPresentInToArray() throws Exception { public void testAllFilesPresentInToArray() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/toArray"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/toArray"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5232,7 +5232,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/unsignedTypes") @TestMetadata("compiler/testData/codegen/bytecodeText/unsignedTypes")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class UnsignedTypes extends AbstractFirBytecodeTextTest { public class UnsignedTypes {
@Test @Test
public void testAllFilesPresentInUnsignedTypes() throws Exception { public void testAllFilesPresentInUnsignedTypes() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/unsignedTypes"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/unsignedTypes"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5308,7 +5308,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/varargs") @TestMetadata("compiler/testData/codegen/bytecodeText/varargs")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Varargs extends AbstractFirBytecodeTextTest { public class Varargs {
@Test @Test
public void testAllFilesPresentInVarargs() throws Exception { public void testAllFilesPresentInVarargs() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/varargs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/varargs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5324,7 +5324,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/when") @TestMetadata("compiler/testData/codegen/bytecodeText/when")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class When extends AbstractFirBytecodeTextTest { public class When {
@Test @Test
public void testAllFilesPresentInWhen() throws Exception { public void testAllFilesPresentInWhen() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/when"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/when"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5484,7 +5484,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/whenEnumOptimization") @TestMetadata("compiler/testData/codegen/bytecodeText/whenEnumOptimization")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class WhenEnumOptimization extends AbstractFirBytecodeTextTest { public class WhenEnumOptimization {
@Test @Test
public void testAllFilesPresentInWhenEnumOptimization() throws Exception { public void testAllFilesPresentInWhenEnumOptimization() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/whenEnumOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/whenEnumOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5578,7 +5578,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/whenStringOptimization") @TestMetadata("compiler/testData/codegen/bytecodeText/whenStringOptimization")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class WhenStringOptimization extends AbstractFirBytecodeTextTest { public class WhenStringOptimization {
@Test @Test
public void testAllFilesPresentInWhenStringOptimization() throws Exception { public void testAllFilesPresentInWhenStringOptimization() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/whenStringOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/whenStringOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -28,7 +28,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/classes") @TestMetadata("compiler/testData/ir/irText/classes")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Classes extends AbstractFir2IrTextTest { public class Classes {
@Test @Test
@TestMetadata("abstractMembers.kt") @TestMetadata("abstractMembers.kt")
public void testAbstractMembers() throws Exception { public void testAbstractMembers() throws Exception {
@@ -326,7 +326,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/declarations") @TestMetadata("compiler/testData/ir/irText/declarations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Declarations extends AbstractFir2IrTextTest { public class Declarations {
@Test @Test
public void testAllFilesPresentInDeclarations() throws Exception { public void testAllFilesPresentInDeclarations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/declarations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/declarations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -473,7 +473,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/declarations/annotations") @TestMetadata("compiler/testData/ir/irText/declarations/annotations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Annotations extends AbstractFir2IrTextTest { public class Annotations {
@Test @Test
public void testAllFilesPresentInAnnotations() throws Exception { public void testAllFilesPresentInAnnotations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/declarations/annotations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/declarations/annotations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -675,7 +675,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/declarations/multiplatform") @TestMetadata("compiler/testData/ir/irText/declarations/multiplatform")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Multiplatform extends AbstractFir2IrTextTest { public class Multiplatform {
@Test @Test
public void testAllFilesPresentInMultiplatform() throws Exception { public void testAllFilesPresentInMultiplatform() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/declarations/multiplatform"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/declarations/multiplatform"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -703,7 +703,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/declarations/parameters") @TestMetadata("compiler/testData/ir/irText/declarations/parameters")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Parameters extends AbstractFir2IrTextTest { public class Parameters {
@Test @Test
public void testAllFilesPresentInParameters() throws Exception { public void testAllFilesPresentInParameters() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/declarations/parameters"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/declarations/parameters"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -791,7 +791,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/declarations/provideDelegate") @TestMetadata("compiler/testData/ir/irText/declarations/provideDelegate")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ProvideDelegate extends AbstractFir2IrTextTest { public class ProvideDelegate {
@Test @Test
public void testAllFilesPresentInProvideDelegate() throws Exception { public void testAllFilesPresentInProvideDelegate() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/declarations/provideDelegate"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/declarations/provideDelegate"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -838,7 +838,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/errors") @TestMetadata("compiler/testData/ir/irText/errors")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Errors extends AbstractFir2IrTextTest { public class Errors {
@Test @Test
public void testAllFilesPresentInErrors() throws Exception { public void testAllFilesPresentInErrors() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/errors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/errors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -860,7 +860,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/expressions") @TestMetadata("compiler/testData/ir/irText/expressions")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Expressions extends AbstractFir2IrTextTest { public class Expressions {
@Test @Test
public void testAllFilesPresentInExpressions() throws Exception { public void testAllFilesPresentInExpressions() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/expressions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/expressions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1721,7 +1721,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/expressions/callableReferences") @TestMetadata("compiler/testData/ir/irText/expressions/callableReferences")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReferences extends AbstractFir2IrTextTest { public class CallableReferences {
@Test @Test
@TestMetadata("adaptedExtensionFunctions.kt") @TestMetadata("adaptedExtensionFunctions.kt")
public void testAdaptedExtensionFunctions() throws Exception { public void testAdaptedExtensionFunctions() throws Exception {
@@ -1839,7 +1839,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/expressions/floatingPointComparisons") @TestMetadata("compiler/testData/ir/irText/expressions/floatingPointComparisons")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FloatingPointComparisons extends AbstractFir2IrTextTest { public class FloatingPointComparisons {
@Test @Test
public void testAllFilesPresentInFloatingPointComparisons() throws Exception { public void testAllFilesPresentInFloatingPointComparisons() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/expressions/floatingPointComparisons"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/expressions/floatingPointComparisons"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1915,7 +1915,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/expressions/funInterface") @TestMetadata("compiler/testData/ir/irText/expressions/funInterface")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FunInterface extends AbstractFir2IrTextTest { public class FunInterface {
@Test @Test
public void testAllFilesPresentInFunInterface() throws Exception { public void testAllFilesPresentInFunInterface() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/expressions/funInterface"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/expressions/funInterface"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1973,7 +1973,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/expressions/sam") @TestMetadata("compiler/testData/ir/irText/expressions/sam")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Sam extends AbstractFir2IrTextTest { public class Sam {
@Test @Test
public void testAllFilesPresentInSam() throws Exception { public void testAllFilesPresentInSam() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/expressions/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/expressions/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2050,7 +2050,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/firProblems") @TestMetadata("compiler/testData/ir/irText/firProblems")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FirProblems extends AbstractFir2IrTextTest { public class FirProblems {
@Test @Test
@TestMetadata("AbstractMutableMap.kt") @TestMetadata("AbstractMutableMap.kt")
public void testAbstractMutableMap() throws Exception { public void testAbstractMutableMap() throws Exception {
@@ -2240,7 +2240,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/lambdas") @TestMetadata("compiler/testData/ir/irText/lambdas")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Lambdas extends AbstractFir2IrTextTest { public class Lambdas {
@Test @Test
public void testAllFilesPresentInLambdas() throws Exception { public void testAllFilesPresentInLambdas() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/lambdas"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/lambdas"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2298,7 +2298,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/regressions") @TestMetadata("compiler/testData/ir/irText/regressions")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Regressions extends AbstractFir2IrTextTest { public class Regressions {
@Test @Test
public void testAllFilesPresentInRegressions() throws Exception { public void testAllFilesPresentInRegressions() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/regressions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/regressions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2337,7 +2337,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/regressions/newInference") @TestMetadata("compiler/testData/ir/irText/regressions/newInference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NewInference extends AbstractFir2IrTextTest { public class NewInference {
@Test @Test
public void testAllFilesPresentInNewInference() throws Exception { public void testAllFilesPresentInNewInference() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/regressions/newInference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/regressions/newInference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2354,7 +2354,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/singletons") @TestMetadata("compiler/testData/ir/irText/singletons")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Singletons extends AbstractFir2IrTextTest { public class Singletons {
@Test @Test
public void testAllFilesPresentInSingletons() throws Exception { public void testAllFilesPresentInSingletons() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/singletons"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/singletons"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2382,7 +2382,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/stubs") @TestMetadata("compiler/testData/ir/irText/stubs")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Stubs extends AbstractFir2IrTextTest { public class Stubs {
@Test @Test
public void testAllFilesPresentInStubs() throws Exception { public void testAllFilesPresentInStubs() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/stubs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/stubs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2470,7 +2470,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/types") @TestMetadata("compiler/testData/ir/irText/types")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Types extends AbstractFir2IrTextTest { public class Types {
@Test @Test
@TestMetadata("abbreviatedTypes.kt") @TestMetadata("abbreviatedTypes.kt")
public void testAbbreviatedTypes() throws Exception { public void testAbbreviatedTypes() throws Exception {
@@ -2623,7 +2623,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/types/nullChecks") @TestMetadata("compiler/testData/ir/irText/types/nullChecks")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NullChecks extends AbstractFir2IrTextTest { public class NullChecks {
@Test @Test
public void testAllFilesPresentInNullChecks() throws Exception { public void testAllFilesPresentInNullChecks() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/types/nullChecks"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/types/nullChecks"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2674,7 +2674,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/types/nullChecks/nullCheckOnLambdaResult") @TestMetadata("compiler/testData/ir/irText/types/nullChecks/nullCheckOnLambdaResult")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NullCheckOnLambdaResult extends AbstractFir2IrTextTest { public class NullCheckOnLambdaResult {
@Test @Test
public void testAllFilesPresentInNullCheckOnLambdaResult() throws Exception { public void testAllFilesPresentInNullCheckOnLambdaResult() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/types/nullChecks/nullCheckOnLambdaResult"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/types/nullChecks/nullCheckOnLambdaResult"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
File diff suppressed because it is too large Load Diff
@@ -33,7 +33,7 @@ public class DiagnosticUsingJavacTestGenerated extends AbstractDiagnosticUsingJa
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/tests/javac/fieldsResolution") @TestMetadata("compiler/testData/diagnostics/tests/javac/fieldsResolution")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FieldsResolution extends AbstractDiagnosticUsingJavacTest { public class FieldsResolution {
@Test @Test
public void testAllFilesPresentInFieldsResolution() throws Exception { public void testAllFilesPresentInFieldsResolution() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/tests/javac/fieldsResolution"), Pattern.compile("^(.*)\\.kts?$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/tests/javac/fieldsResolution"), Pattern.compile("^(.*)\\.kts?$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), true);
@@ -115,7 +115,7 @@ public class DiagnosticUsingJavacTestGenerated extends AbstractDiagnosticUsingJa
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/tests/javac/imports") @TestMetadata("compiler/testData/diagnostics/tests/javac/imports")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Imports extends AbstractDiagnosticUsingJavacTest { public class Imports {
@Test @Test
public void testAllFilesPresentInImports() throws Exception { public void testAllFilesPresentInImports() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/tests/javac/imports"), Pattern.compile("^(.*)\\.kts?$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/tests/javac/imports"), Pattern.compile("^(.*)\\.kts?$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), true);
@@ -227,7 +227,7 @@ public class DiagnosticUsingJavacTestGenerated extends AbstractDiagnosticUsingJa
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/tests/javac/inheritance") @TestMetadata("compiler/testData/diagnostics/tests/javac/inheritance")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Inheritance extends AbstractDiagnosticUsingJavacTest { public class Inheritance {
@Test @Test
public void testAllFilesPresentInInheritance() throws Exception { public void testAllFilesPresentInInheritance() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/tests/javac/inheritance"), Pattern.compile("^(.*)\\.kts?$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/tests/javac/inheritance"), Pattern.compile("^(.*)\\.kts?$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), true);
@@ -339,7 +339,7 @@ public class DiagnosticUsingJavacTestGenerated extends AbstractDiagnosticUsingJa
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/tests/javac/inners") @TestMetadata("compiler/testData/diagnostics/tests/javac/inners")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Inners extends AbstractDiagnosticUsingJavacTest { public class Inners {
@Test @Test
public void testAllFilesPresentInInners() throws Exception { public void testAllFilesPresentInInners() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/tests/javac/inners"), Pattern.compile("^(.*)\\.kts?$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/tests/javac/inners"), Pattern.compile("^(.*)\\.kts?$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), true);
@@ -391,7 +391,7 @@ public class DiagnosticUsingJavacTestGenerated extends AbstractDiagnosticUsingJa
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/tests/javac/qualifiedExpression") @TestMetadata("compiler/testData/diagnostics/tests/javac/qualifiedExpression")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class QualifiedExpression extends AbstractDiagnosticUsingJavacTest { public class QualifiedExpression {
@Test @Test
public void testAllFilesPresentInQualifiedExpression() throws Exception { public void testAllFilesPresentInQualifiedExpression() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/tests/javac/qualifiedExpression"), Pattern.compile("^(.*)\\.kts?$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/tests/javac/qualifiedExpression"), Pattern.compile("^(.*)\\.kts?$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), true);
@@ -431,7 +431,7 @@ public class DiagnosticUsingJavacTestGenerated extends AbstractDiagnosticUsingJa
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/tests/javac/typeParameters") @TestMetadata("compiler/testData/diagnostics/tests/javac/typeParameters")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TypeParameters extends AbstractDiagnosticUsingJavacTest { public class TypeParameters {
@Test @Test
public void testAllFilesPresentInTypeParameters() throws Exception { public void testAllFilesPresentInTypeParameters() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/tests/javac/typeParameters"), Pattern.compile("^(.*)\\.kts?$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/tests/javac/typeParameters"), Pattern.compile("^(.*)\\.kts?$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), true);
@@ -75,7 +75,7 @@ public class DiagnosticsTestWithJsStdLibGenerated extends AbstractDiagnosticsTes
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/classLiteral") @TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/classLiteral")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ClassLiteral extends AbstractDiagnosticsTestWithJsStdLib { public class ClassLiteral {
@Test @Test
public void testAllFilesPresentInClassLiteral() throws Exception { public void testAllFilesPresentInClassLiteral() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/classLiteral"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/classLiteral"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -97,7 +97,7 @@ public class DiagnosticsTestWithJsStdLibGenerated extends AbstractDiagnosticsTes
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/dynamicTypes") @TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/dynamicTypes")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DynamicTypes extends AbstractDiagnosticsTestWithJsStdLib { public class DynamicTypes {
@Test @Test
public void testAllFilesPresentInDynamicTypes() throws Exception { public void testAllFilesPresentInDynamicTypes() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/dynamicTypes"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/dynamicTypes"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -383,7 +383,7 @@ public class DiagnosticsTestWithJsStdLibGenerated extends AbstractDiagnosticsTes
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/export") @TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/export")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Export extends AbstractDiagnosticsTestWithJsStdLib { public class Export {
@Test @Test
public void testAllFilesPresentInExport() throws Exception { public void testAllFilesPresentInExport() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/export"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/export"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -435,7 +435,7 @@ public class DiagnosticsTestWithJsStdLibGenerated extends AbstractDiagnosticsTes
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/inline") @TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/inline")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Inline extends AbstractDiagnosticsTestWithJsStdLib { public class Inline {
@Test @Test
public void testAllFilesPresentInInline() throws Exception { public void testAllFilesPresentInInline() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/inline"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/inline"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -451,7 +451,7 @@ public class DiagnosticsTestWithJsStdLibGenerated extends AbstractDiagnosticsTes
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/jsCode") @TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/jsCode")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class JsCode extends AbstractDiagnosticsTestWithJsStdLib { public class JsCode {
@Test @Test
public void testAllFilesPresentInJsCode() throws Exception { public void testAllFilesPresentInJsCode() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/jsCode"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/jsCode"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -497,7 +497,7 @@ public class DiagnosticsTestWithJsStdLibGenerated extends AbstractDiagnosticsTes
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/jvmDeclarations") @TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/jvmDeclarations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class JvmDeclarations extends AbstractDiagnosticsTestWithJsStdLib { public class JvmDeclarations {
@Test @Test
public void testAllFilesPresentInJvmDeclarations() throws Exception { public void testAllFilesPresentInJvmDeclarations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/jvmDeclarations"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/jvmDeclarations"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -513,7 +513,7 @@ public class DiagnosticsTestWithJsStdLibGenerated extends AbstractDiagnosticsTes
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/module") @TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/module")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Module extends AbstractDiagnosticsTestWithJsStdLib { public class Module {
@Test @Test
public void testAllFilesPresentInModule() throws Exception { public void testAllFilesPresentInModule() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/module"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/module"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -577,7 +577,7 @@ public class DiagnosticsTestWithJsStdLibGenerated extends AbstractDiagnosticsTes
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/name") @TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/name")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Name extends AbstractDiagnosticsTestWithJsStdLib { public class Name {
@Test @Test
public void testAllFilesPresentInName() throws Exception { public void testAllFilesPresentInName() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/name"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/name"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -773,7 +773,7 @@ public class DiagnosticsTestWithJsStdLibGenerated extends AbstractDiagnosticsTes
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/native") @TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/native")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Native extends AbstractDiagnosticsTestWithJsStdLib { public class Native {
@Test @Test
public void testAllFilesPresentInNative() throws Exception { public void testAllFilesPresentInNative() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/native"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/native"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -908,7 +908,7 @@ public class DiagnosticsTestWithJsStdLibGenerated extends AbstractDiagnosticsTes
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/native/nativeGetter") @TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/native/nativeGetter")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NativeGetter extends AbstractDiagnosticsTestWithJsStdLib { public class NativeGetter {
@Test @Test
public void testAllFilesPresentInNativeGetter() throws Exception { public void testAllFilesPresentInNativeGetter() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/native/nativeGetter"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/native/nativeGetter"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -972,7 +972,7 @@ public class DiagnosticsTestWithJsStdLibGenerated extends AbstractDiagnosticsTes
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/native/nativeInvoke") @TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/native/nativeInvoke")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NativeInvoke extends AbstractDiagnosticsTestWithJsStdLib { public class NativeInvoke {
@Test @Test
public void testAllFilesPresentInNativeInvoke() throws Exception { public void testAllFilesPresentInNativeInvoke() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/native/nativeInvoke"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/native/nativeInvoke"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -1036,7 +1036,7 @@ public class DiagnosticsTestWithJsStdLibGenerated extends AbstractDiagnosticsTes
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/native/nativeSetter") @TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/native/nativeSetter")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NativeSetter extends AbstractDiagnosticsTestWithJsStdLib { public class NativeSetter {
@Test @Test
public void testAllFilesPresentInNativeSetter() throws Exception { public void testAllFilesPresentInNativeSetter() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/native/nativeSetter"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/native/nativeSetter"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -1100,7 +1100,7 @@ public class DiagnosticsTestWithJsStdLibGenerated extends AbstractDiagnosticsTes
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/native/optionlBody") @TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/native/optionlBody")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class OptionlBody extends AbstractDiagnosticsTestWithJsStdLib { public class OptionlBody {
@Test @Test
public void testAllFilesPresentInOptionlBody() throws Exception { public void testAllFilesPresentInOptionlBody() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/native/optionlBody"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/native/optionlBody"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -1134,7 +1134,7 @@ public class DiagnosticsTestWithJsStdLibGenerated extends AbstractDiagnosticsTes
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/native/rtti") @TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/native/rtti")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Rtti extends AbstractDiagnosticsTestWithJsStdLib { public class Rtti {
@Test @Test
public void testAllFilesPresentInRtti() throws Exception { public void testAllFilesPresentInRtti() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/native/rtti"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/native/rtti"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -1174,7 +1174,7 @@ public class DiagnosticsTestWithJsStdLibGenerated extends AbstractDiagnosticsTes
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/native/unusedParam") @TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/native/unusedParam")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class UnusedParam extends AbstractDiagnosticsTestWithJsStdLib { public class UnusedParam {
@Test @Test
public void testAllFilesPresentInUnusedParam() throws Exception { public void testAllFilesPresentInUnusedParam() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/native/unusedParam"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/native/unusedParam"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -1209,7 +1209,7 @@ public class DiagnosticsTestWithJsStdLibGenerated extends AbstractDiagnosticsTes
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/qualifier") @TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/qualifier")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Qualifier extends AbstractDiagnosticsTestWithJsStdLib { public class Qualifier {
@Test @Test
public void testAllFilesPresentInQualifier() throws Exception { public void testAllFilesPresentInQualifier() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/qualifier"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/qualifier"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -1231,7 +1231,7 @@ public class DiagnosticsTestWithJsStdLibGenerated extends AbstractDiagnosticsTes
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/reflection") @TestMetadata("compiler/testData/diagnostics/testsWithJsStdLib/reflection")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Reflection extends AbstractDiagnosticsTestWithJsStdLib { public class Reflection {
@Test @Test
public void testAllFilesPresentInReflection() throws Exception { public void testAllFilesPresentInReflection() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/reflection"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJsStdLib/reflection"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -58,7 +58,7 @@ public class DiagnosticsTestWithJvmIrBackendGenerated extends AbstractDiagnostic
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DuplicateJvmSignature extends AbstractDiagnosticsTestWithJvmIrBackend { public class DuplicateJvmSignature {
@Test @Test
public void testAllFilesPresentInDuplicateJvmSignature() throws Exception { public void testAllFilesPresentInDuplicateJvmSignature() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -85,7 +85,7 @@ public class DiagnosticsTestWithJvmIrBackendGenerated extends AbstractDiagnostic
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/accidentalOverrides") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/accidentalOverrides")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class AccidentalOverrides extends AbstractDiagnosticsTestWithJvmIrBackend { public class AccidentalOverrides {
@Test @Test
@TestMetadata("accidentalOverrideFromGrandparent.kt") @TestMetadata("accidentalOverrideFromGrandparent.kt")
public void testAccidentalOverrideFromGrandparent() throws Exception { public void testAccidentalOverrideFromGrandparent() throws Exception {
@@ -185,7 +185,7 @@ public class DiagnosticsTestWithJvmIrBackendGenerated extends AbstractDiagnostic
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/bridges") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/bridges")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Bridges extends AbstractDiagnosticsTestWithJvmIrBackend { public class Bridges {
@Test @Test
public void testAllFilesPresentInBridges() throws Exception { public void testAllFilesPresentInBridges() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/bridges"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/bridges"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -213,7 +213,7 @@ public class DiagnosticsTestWithJvmIrBackendGenerated extends AbstractDiagnostic
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/erasure") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/erasure")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Erasure extends AbstractDiagnosticsTestWithJvmIrBackend { public class Erasure {
@Test @Test
public void testAllFilesPresentInErasure() throws Exception { public void testAllFilesPresentInErasure() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/erasure"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/erasure"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -325,7 +325,7 @@ public class DiagnosticsTestWithJvmIrBackendGenerated extends AbstractDiagnostic
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/finalMembersFromBuiltIns") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/finalMembersFromBuiltIns")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FinalMembersFromBuiltIns extends AbstractDiagnosticsTestWithJvmIrBackend { public class FinalMembersFromBuiltIns {
@Test @Test
public void testAllFilesPresentInFinalMembersFromBuiltIns() throws Exception { public void testAllFilesPresentInFinalMembersFromBuiltIns() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/finalMembersFromBuiltIns"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/finalMembersFromBuiltIns"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -347,7 +347,7 @@ public class DiagnosticsTestWithJvmIrBackendGenerated extends AbstractDiagnostic
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/functionAndProperty") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/functionAndProperty")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FunctionAndProperty extends AbstractDiagnosticsTestWithJvmIrBackend { public class FunctionAndProperty {
@Test @Test
public void testAllFilesPresentInFunctionAndProperty() throws Exception { public void testAllFilesPresentInFunctionAndProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/functionAndProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/functionAndProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -465,7 +465,7 @@ public class DiagnosticsTestWithJvmIrBackendGenerated extends AbstractDiagnostic
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/specialNames") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/specialNames")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class SpecialNames extends AbstractDiagnosticsTestWithJvmIrBackend { public class SpecialNames {
@Test @Test
public void testAllFilesPresentInSpecialNames() throws Exception { public void testAllFilesPresentInSpecialNames() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/specialNames"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/specialNames"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -535,7 +535,7 @@ public class DiagnosticsTestWithJvmIrBackendGenerated extends AbstractDiagnostic
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/statics") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/statics")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Statics extends AbstractDiagnosticsTestWithJvmIrBackend { public class Statics {
@Test @Test
public void testAllFilesPresentInStatics() throws Exception { public void testAllFilesPresentInStatics() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/statics"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/statics"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -581,7 +581,7 @@ public class DiagnosticsTestWithJvmIrBackendGenerated extends AbstractDiagnostic
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/synthesized") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/synthesized")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Synthesized extends AbstractDiagnosticsTestWithJvmIrBackend { public class Synthesized {
@Test @Test
public void testAllFilesPresentInSynthesized() throws Exception { public void testAllFilesPresentInSynthesized() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/synthesized"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/synthesized"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -597,7 +597,7 @@ public class DiagnosticsTestWithJvmIrBackendGenerated extends AbstractDiagnostic
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/traitImpl") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/traitImpl")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TraitImpl extends AbstractDiagnosticsTestWithJvmIrBackend { public class TraitImpl {
@Test @Test
public void testAllFilesPresentInTraitImpl() throws Exception { public void testAllFilesPresentInTraitImpl() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/traitImpl"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/traitImpl"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -644,7 +644,7 @@ public class DiagnosticsTestWithJvmIrBackendGenerated extends AbstractDiagnostic
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/valueClasses") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/valueClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ValueClasses extends AbstractDiagnosticsTestWithJvmIrBackend { public class ValueClasses {
@Test @Test
public void testAllFilesPresentInValueClasses() throws Exception { public void testAllFilesPresentInValueClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/valueClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/valueClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -58,7 +58,7 @@ public class DiagnosticsTestWithOldJvmBackendGenerated extends AbstractDiagnosti
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DuplicateJvmSignature extends AbstractDiagnosticsTestWithOldJvmBackend { public class DuplicateJvmSignature {
@Test @Test
public void testAllFilesPresentInDuplicateJvmSignature() throws Exception { public void testAllFilesPresentInDuplicateJvmSignature() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_OLD, true);
@@ -85,7 +85,7 @@ public class DiagnosticsTestWithOldJvmBackendGenerated extends AbstractDiagnosti
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/accidentalOverrides") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/accidentalOverrides")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class AccidentalOverrides extends AbstractDiagnosticsTestWithOldJvmBackend { public class AccidentalOverrides {
@Test @Test
@TestMetadata("accidentalOverrideFromGrandparent.kt") @TestMetadata("accidentalOverrideFromGrandparent.kt")
public void testAccidentalOverrideFromGrandparent() throws Exception { public void testAccidentalOverrideFromGrandparent() throws Exception {
@@ -173,7 +173,7 @@ public class DiagnosticsTestWithOldJvmBackendGenerated extends AbstractDiagnosti
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/bridges") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/bridges")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Bridges extends AbstractDiagnosticsTestWithOldJvmBackend { public class Bridges {
@Test @Test
public void testAllFilesPresentInBridges() throws Exception { public void testAllFilesPresentInBridges() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/bridges"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/bridges"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_OLD, true);
@@ -201,7 +201,7 @@ public class DiagnosticsTestWithOldJvmBackendGenerated extends AbstractDiagnosti
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/erasure") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/erasure")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Erasure extends AbstractDiagnosticsTestWithOldJvmBackend { public class Erasure {
@Test @Test
public void testAllFilesPresentInErasure() throws Exception { public void testAllFilesPresentInErasure() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/erasure"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/erasure"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_OLD, true);
@@ -313,7 +313,7 @@ public class DiagnosticsTestWithOldJvmBackendGenerated extends AbstractDiagnosti
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/finalMembersFromBuiltIns") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/finalMembersFromBuiltIns")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FinalMembersFromBuiltIns extends AbstractDiagnosticsTestWithOldJvmBackend { public class FinalMembersFromBuiltIns {
@Test @Test
public void testAllFilesPresentInFinalMembersFromBuiltIns() throws Exception { public void testAllFilesPresentInFinalMembersFromBuiltIns() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/finalMembersFromBuiltIns"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/finalMembersFromBuiltIns"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_OLD, true);
@@ -335,7 +335,7 @@ public class DiagnosticsTestWithOldJvmBackendGenerated extends AbstractDiagnosti
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/functionAndProperty") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/functionAndProperty")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FunctionAndProperty extends AbstractDiagnosticsTestWithOldJvmBackend { public class FunctionAndProperty {
@Test @Test
public void testAllFilesPresentInFunctionAndProperty() throws Exception { public void testAllFilesPresentInFunctionAndProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/functionAndProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/functionAndProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_OLD, true);
@@ -453,7 +453,7 @@ public class DiagnosticsTestWithOldJvmBackendGenerated extends AbstractDiagnosti
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/specialNames") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/specialNames")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class SpecialNames extends AbstractDiagnosticsTestWithOldJvmBackend { public class SpecialNames {
@Test @Test
public void testAllFilesPresentInSpecialNames() throws Exception { public void testAllFilesPresentInSpecialNames() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/specialNames"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/specialNames"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_OLD, true);
@@ -523,7 +523,7 @@ public class DiagnosticsTestWithOldJvmBackendGenerated extends AbstractDiagnosti
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/statics") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/statics")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Statics extends AbstractDiagnosticsTestWithOldJvmBackend { public class Statics {
@Test @Test
public void testAllFilesPresentInStatics() throws Exception { public void testAllFilesPresentInStatics() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/statics"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/statics"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_OLD, true);
@@ -569,7 +569,7 @@ public class DiagnosticsTestWithOldJvmBackendGenerated extends AbstractDiagnosti
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/synthesized") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/synthesized")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Synthesized extends AbstractDiagnosticsTestWithOldJvmBackend { public class Synthesized {
@Test @Test
public void testAllFilesPresentInSynthesized() throws Exception { public void testAllFilesPresentInSynthesized() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/synthesized"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/synthesized"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_OLD, true);
@@ -585,7 +585,7 @@ public class DiagnosticsTestWithOldJvmBackendGenerated extends AbstractDiagnosti
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/traitImpl") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/traitImpl")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TraitImpl extends AbstractDiagnosticsTestWithOldJvmBackend { public class TraitImpl {
@Test @Test
public void testAllFilesPresentInTraitImpl() throws Exception { public void testAllFilesPresentInTraitImpl() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/traitImpl"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/traitImpl"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_OLD, true);
@@ -632,7 +632,7 @@ public class DiagnosticsTestWithOldJvmBackendGenerated extends AbstractDiagnosti
@Nested @Nested
@TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/valueClasses") @TestMetadata("compiler/testData/diagnostics/testsWithJvmBackend/valueClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ValueClasses extends AbstractDiagnosticsTestWithOldJvmBackend { public class ValueClasses {
@Test @Test
public void testAllFilesPresentInValueClasses() throws Exception { public void testAllFilesPresentInValueClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/valueClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/diagnostics/testsWithJvmBackend/valueClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_OLD, true);
@@ -20,7 +20,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathTestGenerated extends Abst
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests") @TestMetadata("compiler/testData/foreignAnnotations/tests")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Tests extends AbstractForeignAnnotationsNoAnnotationInClasspathTest { public class Tests {
@Test @Test
public void testAllFilesPresentInTests() throws Exception { public void testAllFilesPresentInTests() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -95,7 +95,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathTestGenerated extends Abst
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Jsr305 extends AbstractForeignAnnotationsNoAnnotationInClasspathTest { public class Jsr305 {
@Test @Test
public void testAllFilesPresentInJsr305() throws Exception { public void testAllFilesPresentInJsr305() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -128,7 +128,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathTestGenerated extends Abst
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/ignore") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/ignore")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Ignore extends AbstractForeignAnnotationsNoAnnotationInClasspathTest { public class Ignore {
@Test @Test
public void testAllFilesPresentInIgnore() throws Exception { public void testAllFilesPresentInIgnore() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/ignore"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/ignore"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -144,7 +144,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathTestGenerated extends Abst
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NullabilityWarnings extends AbstractForeignAnnotationsNoAnnotationInClasspathTest { public class NullabilityWarnings {
@Test @Test
public void testAllFilesPresentInNullabilityWarnings() throws Exception { public void testAllFilesPresentInNullabilityWarnings() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -195,7 +195,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathTestGenerated extends Abst
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/fromPlatformTypes") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/fromPlatformTypes")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FromPlatformTypes extends AbstractForeignAnnotationsNoAnnotationInClasspathTest { public class FromPlatformTypes {
@Test @Test
public void testAllFilesPresentInFromPlatformTypes() throws Exception { public void testAllFilesPresentInFromPlatformTypes() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/fromPlatformTypes"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/fromPlatformTypes"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -325,7 +325,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathTestGenerated extends Abst
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/typeQualifierDefault") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/typeQualifierDefault")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TypeQualifierDefault extends AbstractForeignAnnotationsNoAnnotationInClasspathTest { public class TypeQualifierDefault {
@Test @Test
public void testAllFilesPresentInTypeQualifierDefault() throws Exception { public void testAllFilesPresentInTypeQualifierDefault() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/typeQualifierDefault"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/typeQualifierDefault"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -384,7 +384,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathTestGenerated extends Abst
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/typeQualifierDefault") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/typeQualifierDefault")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TypeQualifierDefault extends AbstractForeignAnnotationsNoAnnotationInClasspathTest { public class TypeQualifierDefault {
@Test @Test
public void testAllFilesPresentInTypeQualifierDefault() throws Exception { public void testAllFilesPresentInTypeQualifierDefault() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/typeQualifierDefault"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/typeQualifierDefault"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -449,7 +449,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathTestGenerated extends Abst
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Jsr305NullabilityWarnings extends AbstractForeignAnnotationsNoAnnotationInClasspathTest { public class Jsr305NullabilityWarnings {
@Test @Test
public void testAllFilesPresentInJsr305NullabilityWarnings() throws Exception { public void testAllFilesPresentInJsr305NullabilityWarnings() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -458,7 +458,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathTestGenerated extends Abst
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings/migration") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings/migration")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Migration extends AbstractForeignAnnotationsNoAnnotationInClasspathTest { public class Migration {
@Test @Test
public void testAllFilesPresentInMigration() throws Exception { public void testAllFilesPresentInMigration() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings/migration"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings/migration"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -523,7 +523,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathTestGenerated extends Abst
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/typeQualifierDefault") @TestMetadata("compiler/testData/foreignAnnotations/tests/typeQualifierDefault")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TypeQualifierDefault extends AbstractForeignAnnotationsNoAnnotationInClasspathTest { public class TypeQualifierDefault {
@Test @Test
public void testAllFilesPresentInTypeQualifierDefault() throws Exception { public void testAllFilesPresentInTypeQualifierDefault() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/typeQualifierDefault"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/typeQualifierDefault"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -540,7 +540,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathTestGenerated extends Abst
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/java8Tests") @TestMetadata("compiler/testData/foreignAnnotations/java8Tests")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Java8Tests extends AbstractForeignAnnotationsNoAnnotationInClasspathTest { public class Java8Tests {
@Test @Test
public void testAllFilesPresentInJava8Tests() throws Exception { public void testAllFilesPresentInJava8Tests() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/java8Tests"), Pattern.compile("^(.+)\\.kt$"), null, true, "jspecify", "typeEnhancementOnCompiledJava"); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/java8Tests"), Pattern.compile("^(.+)\\.kt$"), null, true, "jspecify", "typeEnhancementOnCompiledJava");
@@ -567,7 +567,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathTestGenerated extends Abst
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/java8Tests/jsr305") @TestMetadata("compiler/testData/foreignAnnotations/java8Tests/jsr305")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Jsr305 extends AbstractForeignAnnotationsNoAnnotationInClasspathTest { public class Jsr305 {
@Test @Test
public void testAllFilesPresentInJsr305() throws Exception { public void testAllFilesPresentInJsr305() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/java8Tests/jsr305"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/java8Tests/jsr305"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -607,7 +607,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathTestGenerated extends Abst
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/java8Tests/typeEnhancement") @TestMetadata("compiler/testData/foreignAnnotations/java8Tests/typeEnhancement")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TypeEnhancement extends AbstractForeignAnnotationsNoAnnotationInClasspathTest { public class TypeEnhancement {
@Test @Test
public void testAllFilesPresentInTypeEnhancement() throws Exception { public void testAllFilesPresentInTypeEnhancement() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/java8Tests/typeEnhancement"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/java8Tests/typeEnhancement"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -20,7 +20,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTestGen
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests") @TestMetadata("compiler/testData/foreignAnnotations/tests")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Tests extends AbstractForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTest { public class Tests {
@Test @Test
public void testAllFilesPresentInTests() throws Exception { public void testAllFilesPresentInTests() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -95,7 +95,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTestGen
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Jsr305 extends AbstractForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTest { public class Jsr305 {
@Test @Test
public void testAllFilesPresentInJsr305() throws Exception { public void testAllFilesPresentInJsr305() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -128,7 +128,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTestGen
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/ignore") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/ignore")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Ignore extends AbstractForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTest { public class Ignore {
@Test @Test
public void testAllFilesPresentInIgnore() throws Exception { public void testAllFilesPresentInIgnore() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/ignore"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/ignore"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -144,7 +144,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTestGen
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NullabilityWarnings extends AbstractForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTest { public class NullabilityWarnings {
@Test @Test
public void testAllFilesPresentInNullabilityWarnings() throws Exception { public void testAllFilesPresentInNullabilityWarnings() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -195,7 +195,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTestGen
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/fromPlatformTypes") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/fromPlatformTypes")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FromPlatformTypes extends AbstractForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTest { public class FromPlatformTypes {
@Test @Test
public void testAllFilesPresentInFromPlatformTypes() throws Exception { public void testAllFilesPresentInFromPlatformTypes() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/fromPlatformTypes"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/fromPlatformTypes"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -325,7 +325,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTestGen
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/typeQualifierDefault") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/typeQualifierDefault")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TypeQualifierDefault extends AbstractForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTest { public class TypeQualifierDefault {
@Test @Test
public void testAllFilesPresentInTypeQualifierDefault() throws Exception { public void testAllFilesPresentInTypeQualifierDefault() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/typeQualifierDefault"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/typeQualifierDefault"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -384,7 +384,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTestGen
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/typeQualifierDefault") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/typeQualifierDefault")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TypeQualifierDefault extends AbstractForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTest { public class TypeQualifierDefault {
@Test @Test
public void testAllFilesPresentInTypeQualifierDefault() throws Exception { public void testAllFilesPresentInTypeQualifierDefault() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/typeQualifierDefault"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/typeQualifierDefault"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -449,7 +449,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTestGen
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Jsr305NullabilityWarnings extends AbstractForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTest { public class Jsr305NullabilityWarnings {
@Test @Test
public void testAllFilesPresentInJsr305NullabilityWarnings() throws Exception { public void testAllFilesPresentInJsr305NullabilityWarnings() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -458,7 +458,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTestGen
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings/migration") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings/migration")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Migration extends AbstractForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTest { public class Migration {
@Test @Test
public void testAllFilesPresentInMigration() throws Exception { public void testAllFilesPresentInMigration() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings/migration"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings/migration"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -523,7 +523,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTestGen
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/typeQualifierDefault") @TestMetadata("compiler/testData/foreignAnnotations/tests/typeQualifierDefault")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TypeQualifierDefault extends AbstractForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTest { public class TypeQualifierDefault {
@Test @Test
public void testAllFilesPresentInTypeQualifierDefault() throws Exception { public void testAllFilesPresentInTypeQualifierDefault() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/typeQualifierDefault"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/typeQualifierDefault"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -540,7 +540,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTestGen
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/java8Tests") @TestMetadata("compiler/testData/foreignAnnotations/java8Tests")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Java8Tests extends AbstractForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTest { public class Java8Tests {
@Test @Test
public void testAllFilesPresentInJava8Tests() throws Exception { public void testAllFilesPresentInJava8Tests() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/java8Tests"), Pattern.compile("^(.+)\\.kt$"), null, true, "jspecify", "typeEnhancementOnCompiledJava"); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/java8Tests"), Pattern.compile("^(.+)\\.kt$"), null, true, "jspecify", "typeEnhancementOnCompiledJava");
@@ -567,7 +567,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTestGen
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/java8Tests/jsr305") @TestMetadata("compiler/testData/foreignAnnotations/java8Tests/jsr305")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Jsr305 extends AbstractForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTest { public class Jsr305 {
@Test @Test
public void testAllFilesPresentInJsr305() throws Exception { public void testAllFilesPresentInJsr305() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/java8Tests/jsr305"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/java8Tests/jsr305"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -607,7 +607,7 @@ public class ForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTestGen
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/java8Tests/typeEnhancement") @TestMetadata("compiler/testData/foreignAnnotations/java8Tests/typeEnhancement")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TypeEnhancement extends AbstractForeignAnnotationsNoAnnotationInClasspathWithPsiClassReadingTest { public class TypeEnhancement {
@Test @Test
public void testAllFilesPresentInTypeEnhancement() throws Exception { public void testAllFilesPresentInTypeEnhancement() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/java8Tests/typeEnhancement"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/java8Tests/typeEnhancement"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -20,7 +20,7 @@ public class ForeignAnnotationsTestGenerated extends AbstractForeignAnnotationsT
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests") @TestMetadata("compiler/testData/foreignAnnotations/tests")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Tests extends AbstractForeignAnnotationsTest { public class Tests {
@Test @Test
public void testAllFilesPresentInTests() throws Exception { public void testAllFilesPresentInTests() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -95,7 +95,7 @@ public class ForeignAnnotationsTestGenerated extends AbstractForeignAnnotationsT
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Jsr305 extends AbstractForeignAnnotationsTest { public class Jsr305 {
@Test @Test
public void testAllFilesPresentInJsr305() throws Exception { public void testAllFilesPresentInJsr305() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -128,7 +128,7 @@ public class ForeignAnnotationsTestGenerated extends AbstractForeignAnnotationsT
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/ignore") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/ignore")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Ignore extends AbstractForeignAnnotationsTest { public class Ignore {
@Test @Test
public void testAllFilesPresentInIgnore() throws Exception { public void testAllFilesPresentInIgnore() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/ignore"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/ignore"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -144,7 +144,7 @@ public class ForeignAnnotationsTestGenerated extends AbstractForeignAnnotationsT
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NullabilityWarnings extends AbstractForeignAnnotationsTest { public class NullabilityWarnings {
@Test @Test
public void testAllFilesPresentInNullabilityWarnings() throws Exception { public void testAllFilesPresentInNullabilityWarnings() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -195,7 +195,7 @@ public class ForeignAnnotationsTestGenerated extends AbstractForeignAnnotationsT
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/fromPlatformTypes") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/fromPlatformTypes")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FromPlatformTypes extends AbstractForeignAnnotationsTest { public class FromPlatformTypes {
@Test @Test
public void testAllFilesPresentInFromPlatformTypes() throws Exception { public void testAllFilesPresentInFromPlatformTypes() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/fromPlatformTypes"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/fromPlatformTypes"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -325,7 +325,7 @@ public class ForeignAnnotationsTestGenerated extends AbstractForeignAnnotationsT
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/typeQualifierDefault") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/typeQualifierDefault")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TypeQualifierDefault extends AbstractForeignAnnotationsTest { public class TypeQualifierDefault {
@Test @Test
public void testAllFilesPresentInTypeQualifierDefault() throws Exception { public void testAllFilesPresentInTypeQualifierDefault() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/typeQualifierDefault"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/nullabilityWarnings/typeQualifierDefault"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -384,7 +384,7 @@ public class ForeignAnnotationsTestGenerated extends AbstractForeignAnnotationsT
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/typeQualifierDefault") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305/typeQualifierDefault")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TypeQualifierDefault extends AbstractForeignAnnotationsTest { public class TypeQualifierDefault {
@Test @Test
public void testAllFilesPresentInTypeQualifierDefault() throws Exception { public void testAllFilesPresentInTypeQualifierDefault() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/typeQualifierDefault"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305/typeQualifierDefault"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -449,7 +449,7 @@ public class ForeignAnnotationsTestGenerated extends AbstractForeignAnnotationsT
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Jsr305NullabilityWarnings extends AbstractForeignAnnotationsTest { public class Jsr305NullabilityWarnings {
@Test @Test
public void testAllFilesPresentInJsr305NullabilityWarnings() throws Exception { public void testAllFilesPresentInJsr305NullabilityWarnings() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -458,7 +458,7 @@ public class ForeignAnnotationsTestGenerated extends AbstractForeignAnnotationsT
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings/migration") @TestMetadata("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings/migration")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Migration extends AbstractForeignAnnotationsTest { public class Migration {
@Test @Test
public void testAllFilesPresentInMigration() throws Exception { public void testAllFilesPresentInMigration() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings/migration"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/jsr305NullabilityWarnings/migration"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -523,7 +523,7 @@ public class ForeignAnnotationsTestGenerated extends AbstractForeignAnnotationsT
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/tests/typeQualifierDefault") @TestMetadata("compiler/testData/foreignAnnotations/tests/typeQualifierDefault")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TypeQualifierDefault extends AbstractForeignAnnotationsTest { public class TypeQualifierDefault {
@Test @Test
public void testAllFilesPresentInTypeQualifierDefault() throws Exception { public void testAllFilesPresentInTypeQualifierDefault() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/typeQualifierDefault"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/tests/typeQualifierDefault"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -540,7 +540,7 @@ public class ForeignAnnotationsTestGenerated extends AbstractForeignAnnotationsT
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/java8Tests") @TestMetadata("compiler/testData/foreignAnnotations/java8Tests")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Java8Tests extends AbstractForeignAnnotationsTest { public class Java8Tests {
@Test @Test
public void testAllFilesPresentInJava8Tests() throws Exception { public void testAllFilesPresentInJava8Tests() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/java8Tests"), Pattern.compile("^(.+)\\.kt$"), null, true, "jspecify", "typeEnhancementOnCompiledJava"); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/java8Tests"), Pattern.compile("^(.+)\\.kt$"), null, true, "jspecify", "typeEnhancementOnCompiledJava");
@@ -567,7 +567,7 @@ public class ForeignAnnotationsTestGenerated extends AbstractForeignAnnotationsT
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/java8Tests/jsr305") @TestMetadata("compiler/testData/foreignAnnotations/java8Tests/jsr305")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Jsr305 extends AbstractForeignAnnotationsTest { public class Jsr305 {
@Test @Test
public void testAllFilesPresentInJsr305() throws Exception { public void testAllFilesPresentInJsr305() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/java8Tests/jsr305"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/java8Tests/jsr305"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -607,7 +607,7 @@ public class ForeignAnnotationsTestGenerated extends AbstractForeignAnnotationsT
@Nested @Nested
@TestMetadata("compiler/testData/foreignAnnotations/java8Tests/typeEnhancement") @TestMetadata("compiler/testData/foreignAnnotations/java8Tests/typeEnhancement")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TypeEnhancement extends AbstractForeignAnnotationsTest { public class TypeEnhancement {
@Test @Test
public void testAllFilesPresentInTypeEnhancement() throws Exception { public void testAllFilesPresentInTypeEnhancement() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/java8Tests/typeEnhancement"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/foreignAnnotations/java8Tests/typeEnhancement"), Pattern.compile("^(.+)\\.kt$"), null, true);
@@ -28,7 +28,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class AnonymousObject extends AbstractBlackBoxInlineCodegenTest { public class AnonymousObject {
@Test @Test
public void testAllFilesPresentInAnonymousObject() throws Exception { public void testAllFilesPresentInAnonymousObject() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -403,7 +403,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/enumWhen") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/enumWhen")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class EnumWhen extends AbstractBlackBoxInlineCodegenTest { public class EnumWhen {
@Test @Test
public void testAllFilesPresentInEnumWhen() throws Exception { public void testAllFilesPresentInEnumWhen() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/enumWhen"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/enumWhen"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -437,7 +437,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ProperRecapturing extends AbstractBlackBoxInlineCodegenTest { public class ProperRecapturing {
@Test @Test
public void testAllFilesPresentInProperRecapturing() throws Exception { public void testAllFilesPresentInProperRecapturing() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -483,7 +483,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ProperRecapturingInClass extends AbstractBlackBoxInlineCodegenTest { public class ProperRecapturingInClass {
@Test @Test
public void testAllFilesPresentInProperRecapturingInClass() throws Exception { public void testAllFilesPresentInProperRecapturingInClass() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -565,7 +565,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/sam") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/sam")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Sam extends AbstractBlackBoxInlineCodegenTest { public class Sam {
@Test @Test
public void testAllFilesPresentInSam() throws Exception { public void testAllFilesPresentInSam() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -617,7 +617,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TwoCapturedReceivers extends AbstractBlackBoxInlineCodegenTest { public class TwoCapturedReceivers {
@Test @Test
public void testAllFilesPresentInTwoCapturedReceivers() throws Exception { public void testAllFilesPresentInTwoCapturedReceivers() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -658,7 +658,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/argumentOrder") @TestMetadata("compiler/testData/codegen/boxInline/argumentOrder")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ArgumentOrder extends AbstractBlackBoxInlineCodegenTest { public class ArgumentOrder {
@Test @Test
public void testAllFilesPresentInArgumentOrder() throws Exception { public void testAllFilesPresentInArgumentOrder() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/argumentOrder"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/argumentOrder"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -752,7 +752,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/arrayConvention") @TestMetadata("compiler/testData/codegen/boxInline/arrayConvention")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ArrayConvention extends AbstractBlackBoxInlineCodegenTest { public class ArrayConvention {
@Test @Test
public void testAllFilesPresentInArrayConvention() throws Exception { public void testAllFilesPresentInArrayConvention() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/arrayConvention"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/arrayConvention"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -798,7 +798,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/assert") @TestMetadata("compiler/testData/codegen/boxInline/assert")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Assert extends AbstractBlackBoxInlineCodegenTest { public class Assert {
@Test @Test
public void testAllFilesPresentInAssert() throws Exception { public void testAllFilesPresentInAssert() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/assert"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/assert"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -880,7 +880,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/builders") @TestMetadata("compiler/testData/codegen/boxInline/builders")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Builders extends AbstractBlackBoxInlineCodegenTest { public class Builders {
@Test @Test
public void testAllFilesPresentInBuilders() throws Exception { public void testAllFilesPresentInBuilders() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/builders"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/builders"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -902,7 +902,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/bytecodePreprocessing") @TestMetadata("compiler/testData/codegen/boxInline/bytecodePreprocessing")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class BytecodePreprocessing extends AbstractBlackBoxInlineCodegenTest { public class BytecodePreprocessing {
@Test @Test
public void testAllFilesPresentInBytecodePreprocessing() throws Exception { public void testAllFilesPresentInBytecodePreprocessing() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/bytecodePreprocessing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/bytecodePreprocessing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -918,7 +918,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/callableReference") @TestMetadata("compiler/testData/codegen/boxInline/callableReference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReference extends AbstractBlackBoxInlineCodegenTest { public class CallableReference {
@Test @Test
@TestMetadata("adapted.kt") @TestMetadata("adapted.kt")
public void testAdapted() throws Exception { public void testAdapted() throws Exception {
@@ -1023,7 +1023,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/callableReference/bound") @TestMetadata("compiler/testData/codegen/boxInline/callableReference/bound")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Bound extends AbstractBlackBoxInlineCodegenTest { public class Bound {
@Test @Test
public void testAllFilesPresentInBound() throws Exception { public void testAllFilesPresentInBound() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/callableReference/bound"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/callableReference/bound"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1184,7 +1184,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/capture") @TestMetadata("compiler/testData/codegen/boxInline/capture")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Capture extends AbstractBlackBoxInlineCodegenTest { public class Capture {
@Test @Test
public void testAllFilesPresentInCapture() throws Exception { public void testAllFilesPresentInCapture() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/capture"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/capture"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1230,7 +1230,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/complex") @TestMetadata("compiler/testData/codegen/boxInline/complex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Complex extends AbstractBlackBoxInlineCodegenTest { public class Complex {
@Test @Test
public void testAllFilesPresentInComplex() throws Exception { public void testAllFilesPresentInComplex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1288,7 +1288,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/complexStack") @TestMetadata("compiler/testData/codegen/boxInline/complexStack")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ComplexStack extends AbstractBlackBoxInlineCodegenTest { public class ComplexStack {
@Test @Test
public void testAllFilesPresentInComplexStack() throws Exception { public void testAllFilesPresentInComplexStack() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complexStack"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complexStack"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1352,7 +1352,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/contracts") @TestMetadata("compiler/testData/codegen/boxInline/contracts")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Contracts extends AbstractBlackBoxInlineCodegenTest { public class Contracts {
@Test @Test
public void testAllFilesPresentInContracts() throws Exception { public void testAllFilesPresentInContracts() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/contracts"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/contracts"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1452,7 +1452,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultValues extends AbstractBlackBoxInlineCodegenTest { public class DefaultValues {
@Test @Test
@TestMetadata("33Parameters.kt") @TestMetadata("33Parameters.kt")
public void test33Parameters() throws Exception { public void test33Parameters() throws Exception {
@@ -1581,7 +1581,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LambdaInlining extends AbstractBlackBoxInlineCodegenTest { public class LambdaInlining {
@Test @Test
public void testAllFilesPresentInLambdaInlining() throws Exception { public void testAllFilesPresentInLambdaInlining() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1782,7 +1782,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReferences extends AbstractBlackBoxInlineCodegenTest { public class CallableReferences {
@Test @Test
public void testAllFilesPresentInCallableReferences() throws Exception { public void testAllFilesPresentInCallableReferences() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1925,7 +1925,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/maskElimination") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues/maskElimination")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MaskElimination extends AbstractBlackBoxInlineCodegenTest { public class MaskElimination {
@Test @Test
@TestMetadata("32Parameters.kt") @TestMetadata("32Parameters.kt")
public void test32Parameters() throws Exception { public void test32Parameters() throws Exception {
@@ -1978,7 +1978,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/delegatedProperty") @TestMetadata("compiler/testData/codegen/boxInline/delegatedProperty")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DelegatedProperty extends AbstractBlackBoxInlineCodegenTest { public class DelegatedProperty {
@Test @Test
public void testAllFilesPresentInDelegatedProperty() throws Exception { public void testAllFilesPresentInDelegatedProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/delegatedProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/delegatedProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2018,7 +2018,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/enclosingInfo") @TestMetadata("compiler/testData/codegen/boxInline/enclosingInfo")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class EnclosingInfo extends AbstractBlackBoxInlineCodegenTest { public class EnclosingInfo {
@Test @Test
public void testAllFilesPresentInEnclosingInfo() throws Exception { public void testAllFilesPresentInEnclosingInfo() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enclosingInfo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enclosingInfo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2070,7 +2070,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/enum") @TestMetadata("compiler/testData/codegen/boxInline/enum")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Enum extends AbstractBlackBoxInlineCodegenTest { public class Enum {
@Test @Test
public void testAllFilesPresentInEnum() throws Exception { public void testAllFilesPresentInEnum() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enum"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enum"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2158,7 +2158,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/functionExpression") @TestMetadata("compiler/testData/codegen/boxInline/functionExpression")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FunctionExpression extends AbstractBlackBoxInlineCodegenTest { public class FunctionExpression {
@Test @Test
public void testAllFilesPresentInFunctionExpression() throws Exception { public void testAllFilesPresentInFunctionExpression() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/functionExpression"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/functionExpression"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2174,7 +2174,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineClasses extends AbstractBlackBoxInlineCodegenTest { public class InlineClasses {
@Test @Test
public void testAllFilesPresentInInlineClasses() throws Exception { public void testAllFilesPresentInInlineClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2231,7 +2231,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class UnboxGenericParameter extends AbstractBlackBoxInlineCodegenTest { public class UnboxGenericParameter {
@Test @Test
public void testAllFilesPresentInUnboxGenericParameter() throws Exception { public void testAllFilesPresentInUnboxGenericParameter() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2240,7 +2240,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FunInterface extends AbstractBlackBoxInlineCodegenTest { public class FunInterface {
@Test @Test
public void testAllFilesPresentInFunInterface() throws Exception { public void testAllFilesPresentInFunInterface() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2286,7 +2286,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Lambda extends AbstractBlackBoxInlineCodegenTest { public class Lambda {
@Test @Test
public void testAllFilesPresentInLambda() throws Exception { public void testAllFilesPresentInLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2332,7 +2332,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ObjectLiteral extends AbstractBlackBoxInlineCodegenTest { public class ObjectLiteral {
@Test @Test
public void testAllFilesPresentInObjectLiteral() throws Exception { public void testAllFilesPresentInObjectLiteral() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2380,7 +2380,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/innerClasses") @TestMetadata("compiler/testData/codegen/boxInline/innerClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InnerClasses extends AbstractBlackBoxInlineCodegenTest { public class InnerClasses {
@Test @Test
public void testAllFilesPresentInInnerClasses() throws Exception { public void testAllFilesPresentInInnerClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/innerClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/innerClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2408,7 +2408,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/jvmName") @TestMetadata("compiler/testData/codegen/boxInline/jvmName")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class JvmName extends AbstractBlackBoxInlineCodegenTest { public class JvmName {
@Test @Test
public void testAllFilesPresentInJvmName() throws Exception { public void testAllFilesPresentInJvmName() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2424,7 +2424,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/jvmPackageName") @TestMetadata("compiler/testData/codegen/boxInline/jvmPackageName")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class JvmPackageName extends AbstractBlackBoxInlineCodegenTest { public class JvmPackageName {
@Test @Test
public void testAllFilesPresentInJvmPackageName() throws Exception { public void testAllFilesPresentInJvmPackageName() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmPackageName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmPackageName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2440,7 +2440,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/lambdaClassClash") @TestMetadata("compiler/testData/codegen/boxInline/lambdaClassClash")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LambdaClassClash extends AbstractBlackBoxInlineCodegenTest { public class LambdaClassClash {
@Test @Test
public void testAllFilesPresentInLambdaClassClash() throws Exception { public void testAllFilesPresentInLambdaClassClash() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaClassClash"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaClassClash"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2462,7 +2462,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/lambdaTransformation") @TestMetadata("compiler/testData/codegen/boxInline/lambdaTransformation")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LambdaTransformation extends AbstractBlackBoxInlineCodegenTest { public class LambdaTransformation {
@Test @Test
public void testAllFilesPresentInLambdaTransformation() throws Exception { public void testAllFilesPresentInLambdaTransformation() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaTransformation"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaTransformation"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2508,7 +2508,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/localFunInLambda") @TestMetadata("compiler/testData/codegen/boxInline/localFunInLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LocalFunInLambda extends AbstractBlackBoxInlineCodegenTest { public class LocalFunInLambda {
@Test @Test
public void testAllFilesPresentInLocalFunInLambda() throws Exception { public void testAllFilesPresentInLocalFunInLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/localFunInLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/localFunInLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2542,7 +2542,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multiModule") @TestMetadata("compiler/testData/codegen/boxInline/multiModule")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MultiModule extends AbstractBlackBoxInlineCodegenTest { public class MultiModule {
@Test @Test
public void testAllFilesPresentInMultiModule() throws Exception { public void testAllFilesPresentInMultiModule() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2558,7 +2558,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multifileClasses") @TestMetadata("compiler/testData/codegen/boxInline/multifileClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MultifileClasses extends AbstractBlackBoxInlineCodegenTest { public class MultifileClasses {
@Test @Test
public void testAllFilesPresentInMultifileClasses() throws Exception { public void testAllFilesPresentInMultifileClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multifileClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multifileClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2586,7 +2586,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multiplatform") @TestMetadata("compiler/testData/codegen/boxInline/multiplatform")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Multiplatform extends AbstractBlackBoxInlineCodegenTest { public class Multiplatform {
@Test @Test
public void testAllFilesPresentInMultiplatform() throws Exception { public void testAllFilesPresentInMultiplatform() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2595,7 +2595,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multiplatform/defaultArguments") @TestMetadata("compiler/testData/codegen/boxInline/multiplatform/defaultArguments")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultArguments extends AbstractBlackBoxInlineCodegenTest { public class DefaultArguments {
@Test @Test
public void testAllFilesPresentInDefaultArguments() throws Exception { public void testAllFilesPresentInDefaultArguments() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform/defaultArguments"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform/defaultArguments"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2612,7 +2612,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/noInline") @TestMetadata("compiler/testData/codegen/boxInline/noInline")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NoInline extends AbstractBlackBoxInlineCodegenTest { public class NoInline {
@Test @Test
public void testAllFilesPresentInNoInline() throws Exception { public void testAllFilesPresentInNoInline() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/noInline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/noInline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2664,7 +2664,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NonLocalReturns extends AbstractBlackBoxInlineCodegenTest { public class NonLocalReturns {
@Test @Test
public void testAllFilesPresentInNonLocalReturns() throws Exception { public void testAllFilesPresentInNonLocalReturns() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2805,7 +2805,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Deparenthesize extends AbstractBlackBoxInlineCodegenTest { public class Deparenthesize {
@Test @Test
public void testAllFilesPresentInDeparenthesize() throws Exception { public void testAllFilesPresentInDeparenthesize() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2827,7 +2827,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TryFinally extends AbstractBlackBoxInlineCodegenTest { public class TryFinally {
@Test @Test
public void testAllFilesPresentInTryFinally() throws Exception { public void testAllFilesPresentInTryFinally() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2914,7 +2914,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallSite extends AbstractBlackBoxInlineCodegenTest { public class CallSite {
@Test @Test
public void testAllFilesPresentInCallSite() throws Exception { public void testAllFilesPresentInCallSite() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2960,7 +2960,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Chained extends AbstractBlackBoxInlineCodegenTest { public class Chained {
@Test @Test
public void testAllFilesPresentInChained() throws Exception { public void testAllFilesPresentInChained() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3018,7 +3018,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DeclSite extends AbstractBlackBoxInlineCodegenTest { public class DeclSite {
@Test @Test
public void testAllFilesPresentInDeclSite() throws Exception { public void testAllFilesPresentInDeclSite() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3100,7 +3100,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ExceptionTable extends AbstractBlackBoxInlineCodegenTest { public class ExceptionTable {
@Test @Test
public void testAllFilesPresentInExceptionTable() throws Exception { public void testAllFilesPresentInExceptionTable() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3236,7 +3236,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Variables extends AbstractBlackBoxInlineCodegenTest { public class Variables {
@Test @Test
public void testAllFilesPresentInVariables() throws Exception { public void testAllFilesPresentInVariables() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3254,7 +3254,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/optimizations") @TestMetadata("compiler/testData/codegen/boxInline/optimizations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Optimizations extends AbstractBlackBoxInlineCodegenTest { public class Optimizations {
@Test @Test
public void testAllFilesPresentInOptimizations() throws Exception { public void testAllFilesPresentInOptimizations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/optimizations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/optimizations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3270,7 +3270,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/private") @TestMetadata("compiler/testData/codegen/boxInline/private")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Private extends AbstractBlackBoxInlineCodegenTest { public class Private {
@Test @Test
@TestMetadata("accessorForConst.kt") @TestMetadata("accessorForConst.kt")
public void testAccessorForConst() throws Exception { public void testAccessorForConst() throws Exception {
@@ -3352,7 +3352,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/property") @TestMetadata("compiler/testData/codegen/boxInline/property")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Property extends AbstractBlackBoxInlineCodegenTest { public class Property {
@Test @Test
public void testAllFilesPresentInProperty() throws Exception { public void testAllFilesPresentInProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/property"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/property"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3440,7 +3440,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified") @TestMetadata("compiler/testData/codegen/boxInline/reified")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Reified extends AbstractBlackBoxInlineCodegenTest { public class Reified {
@Test @Test
public void testAllFilesPresentInReified() throws Exception { public void testAllFilesPresentInReified() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3599,7 +3599,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/checkCast") @TestMetadata("compiler/testData/codegen/boxInline/reified/checkCast")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CheckCast extends AbstractBlackBoxInlineCodegenTest { public class CheckCast {
@Test @Test
public void testAllFilesPresentInCheckCast() throws Exception { public void testAllFilesPresentInCheckCast() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/checkCast"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/checkCast"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3669,7 +3669,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/defaultLambda") @TestMetadata("compiler/testData/codegen/boxInline/reified/defaultLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultLambda extends AbstractBlackBoxInlineCodegenTest { public class DefaultLambda {
@Test @Test
public void testAllFilesPresentInDefaultLambda() throws Exception { public void testAllFilesPresentInDefaultLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3727,7 +3727,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/isCheck") @TestMetadata("compiler/testData/codegen/boxInline/reified/isCheck")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class IsCheck extends AbstractBlackBoxInlineCodegenTest { public class IsCheck {
@Test @Test
public void testAllFilesPresentInIsCheck() throws Exception { public void testAllFilesPresentInIsCheck() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/isCheck"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/isCheck"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3756,7 +3756,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/signature") @TestMetadata("compiler/testData/codegen/boxInline/signature")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Signature extends AbstractBlackBoxInlineCodegenTest { public class Signature {
@Test @Test
public void testAllFilesPresentInSignature() throws Exception { public void testAllFilesPresentInSignature() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/signature"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/signature"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3820,7 +3820,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/simple") @TestMetadata("compiler/testData/codegen/boxInline/simple")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Simple extends AbstractBlackBoxInlineCodegenTest { public class Simple {
@Test @Test
public void testAllFilesPresentInSimple() throws Exception { public void testAllFilesPresentInSimple() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/simple"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/simple"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3974,7 +3974,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap") @TestMetadata("compiler/testData/codegen/boxInline/smap")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Smap extends AbstractBlackBoxInlineCodegenTest { public class Smap {
@Test @Test
public void testAllFilesPresentInSmap() throws Exception { public void testAllFilesPresentInSmap() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4097,7 +4097,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/anonymous") @TestMetadata("compiler/testData/codegen/boxInline/smap/anonymous")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Anonymous extends AbstractBlackBoxInlineCodegenTest { public class Anonymous {
@Test @Test
public void testAllFilesPresentInAnonymous() throws Exception { public void testAllFilesPresentInAnonymous() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/anonymous"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/anonymous"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4167,7 +4167,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/defaultLambda") @TestMetadata("compiler/testData/codegen/boxInline/smap/defaultLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultLambda extends AbstractBlackBoxInlineCodegenTest { public class DefaultLambda {
@Test @Test
public void testAllFilesPresentInDefaultLambda() throws Exception { public void testAllFilesPresentInDefaultLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4231,7 +4231,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/inlineOnly") @TestMetadata("compiler/testData/codegen/boxInline/smap/inlineOnly")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineOnly extends AbstractBlackBoxInlineCodegenTest { public class InlineOnly {
@Test @Test
public void testAllFilesPresentInInlineOnly() throws Exception { public void testAllFilesPresentInInlineOnly() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/inlineOnly"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/inlineOnly"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4277,7 +4277,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/newsmap") @TestMetadata("compiler/testData/codegen/boxInline/smap/newsmap")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Newsmap extends AbstractBlackBoxInlineCodegenTest { public class Newsmap {
@Test @Test
public void testAllFilesPresentInNewsmap() throws Exception { public void testAllFilesPresentInNewsmap() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/newsmap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/newsmap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4311,7 +4311,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/resolve") @TestMetadata("compiler/testData/codegen/boxInline/smap/resolve")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Resolve extends AbstractBlackBoxInlineCodegenTest { public class Resolve {
@Test @Test
public void testAllFilesPresentInResolve() throws Exception { public void testAllFilesPresentInResolve() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/resolve"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/resolve"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4334,7 +4334,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/special") @TestMetadata("compiler/testData/codegen/boxInline/special")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Special extends AbstractBlackBoxInlineCodegenTest { public class Special {
@Test @Test
public void testAllFilesPresentInSpecial() throws Exception { public void testAllFilesPresentInSpecial() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/special"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/special"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4398,7 +4398,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/stackOnReturn") @TestMetadata("compiler/testData/codegen/boxInline/stackOnReturn")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StackOnReturn extends AbstractBlackBoxInlineCodegenTest { public class StackOnReturn {
@Test @Test
public void testAllFilesPresentInStackOnReturn() throws Exception { public void testAllFilesPresentInStackOnReturn() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/stackOnReturn"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/stackOnReturn"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4504,7 +4504,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend") @TestMetadata("compiler/testData/codegen/boxInline/suspend")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Suspend extends AbstractBlackBoxInlineCodegenTest { public class Suspend {
@Test @Test
public void testAllFilesPresentInSuspend() throws Exception { public void testAllFilesPresentInSuspend() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4693,7 +4693,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/callableReference") @TestMetadata("compiler/testData/codegen/boxInline/suspend/callableReference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReference extends AbstractBlackBoxInlineCodegenTest { public class CallableReference {
@Test @Test
public void testAllFilesPresentInCallableReference() throws Exception { public void testAllFilesPresentInCallableReference() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/callableReference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/callableReference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4733,7 +4733,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/defaultParameter") @TestMetadata("compiler/testData/codegen/boxInline/suspend/defaultParameter")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultParameter extends AbstractBlackBoxInlineCodegenTest { public class DefaultParameter {
@Test @Test
public void testAllFilesPresentInDefaultParameter() throws Exception { public void testAllFilesPresentInDefaultParameter() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/defaultParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/defaultParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4767,7 +4767,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineClass") @TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineClass")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineClass extends AbstractBlackBoxInlineCodegenTest { public class InlineClass {
@Test @Test
public void testAllFilesPresentInInlineClass() throws Exception { public void testAllFilesPresentInInlineClass() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4789,7 +4789,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline") @TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineUsedAsNoinline extends AbstractBlackBoxInlineCodegenTest { public class InlineUsedAsNoinline {
@Test @Test
public void testAllFilesPresentInInlineUsedAsNoinline() throws Exception { public void testAllFilesPresentInInlineUsedAsNoinline() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4823,7 +4823,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/receiver") @TestMetadata("compiler/testData/codegen/boxInline/suspend/receiver")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Receiver extends AbstractBlackBoxInlineCodegenTest { public class Receiver {
@Test @Test
public void testAllFilesPresentInReceiver() throws Exception { public void testAllFilesPresentInReceiver() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/receiver"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/receiver"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4881,7 +4881,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/stateMachine") @TestMetadata("compiler/testData/codegen/boxInline/suspend/stateMachine")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StateMachine extends AbstractBlackBoxInlineCodegenTest { public class StateMachine {
@Test @Test
public void testAllFilesPresentInStateMachine() throws Exception { public void testAllFilesPresentInStateMachine() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/stateMachine"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/stateMachine"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -5030,7 +5030,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors") @TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class SyntheticAccessors extends AbstractBlackBoxInlineCodegenTest { public class SyntheticAccessors {
@Test @Test
public void testAllFilesPresentInSyntheticAccessors() throws Exception { public void testAllFilesPresentInSyntheticAccessors() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -5087,7 +5087,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda") @TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class WithinInlineLambda extends AbstractBlackBoxInlineCodegenTest { public class WithinInlineLambda {
@Test @Test
public void testAllFilesPresentInWithinInlineLambda() throws Exception { public void testAllFilesPresentInWithinInlineLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -5152,7 +5152,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/trait") @TestMetadata("compiler/testData/codegen/boxInline/trait")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Trait extends AbstractBlackBoxInlineCodegenTest { public class Trait {
@Test @Test
public void testAllFilesPresentInTrait() throws Exception { public void testAllFilesPresentInTrait() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/trait"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/trait"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -5168,7 +5168,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/tryCatchFinally") @TestMetadata("compiler/testData/codegen/boxInline/tryCatchFinally")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TryCatchFinally extends AbstractBlackBoxInlineCodegenTest { public class TryCatchFinally {
@Test @Test
public void testAllFilesPresentInTryCatchFinally() throws Exception { public void testAllFilesPresentInTryCatchFinally() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/tryCatchFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/tryCatchFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -5202,7 +5202,7 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/varargs") @TestMetadata("compiler/testData/codegen/boxInline/varargs")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Varargs extends AbstractBlackBoxInlineCodegenTest { public class Varargs {
@Test @Test
public void testAllFilesPresentInVarargs() throws Exception { public void testAllFilesPresentInVarargs() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/varargs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/varargs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -520,7 +520,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/argumentOrder") @TestMetadata("compiler/testData/codegen/bytecodeText/argumentOrder")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ArgumentOrder extends AbstractBytecodeTextTest { public class ArgumentOrder {
@Test @Test
public void testAllFilesPresentInArgumentOrder() throws Exception { public void testAllFilesPresentInArgumentOrder() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/argumentOrder"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/argumentOrder"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -542,7 +542,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/assert") @TestMetadata("compiler/testData/codegen/bytecodeText/assert")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Assert extends AbstractBytecodeTextTest { public class Assert {
@Test @Test
public void testAllFilesPresentInAssert() throws Exception { public void testAllFilesPresentInAssert() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/assert"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/assert"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -582,7 +582,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/boxing") @TestMetadata("compiler/testData/codegen/bytecodeText/boxing")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Boxing extends AbstractBytecodeTextTest { public class Boxing {
@Test @Test
public void testAllFilesPresentInBoxing() throws Exception { public void testAllFilesPresentInBoxing() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/boxing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/boxing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -610,7 +610,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/boxingOptimization") @TestMetadata("compiler/testData/codegen/bytecodeText/boxingOptimization")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class BoxingOptimization extends AbstractBytecodeTextTest { public class BoxingOptimization {
@Test @Test
public void testAllFilesPresentInBoxingOptimization() throws Exception { public void testAllFilesPresentInBoxingOptimization() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/boxingOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/boxingOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -770,7 +770,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/builtinFunctions") @TestMetadata("compiler/testData/codegen/bytecodeText/builtinFunctions")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class BuiltinFunctions extends AbstractBytecodeTextTest { public class BuiltinFunctions {
@Test @Test
public void testAllFilesPresentInBuiltinFunctions() throws Exception { public void testAllFilesPresentInBuiltinFunctions() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/builtinFunctions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/builtinFunctions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -803,7 +803,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/builtinFunctions/genericParameterBridge") @TestMetadata("compiler/testData/codegen/bytecodeText/builtinFunctions/genericParameterBridge")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class GenericParameterBridge extends AbstractBytecodeTextTest { public class GenericParameterBridge {
@Test @Test
@TestMetadata("abstractList.kt") @TestMetadata("abstractList.kt")
public void testAbstractList() throws Exception { public void testAbstractList() throws Exception {
@@ -856,7 +856,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/callableReference") @TestMetadata("compiler/testData/codegen/bytecodeText/callableReference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReference extends AbstractBytecodeTextTest { public class CallableReference {
@Test @Test
public void testAllFilesPresentInCallableReference() throws Exception { public void testAllFilesPresentInCallableReference() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/callableReference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/callableReference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -920,7 +920,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/capturedVarsOptimization") @TestMetadata("compiler/testData/codegen/bytecodeText/capturedVarsOptimization")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CapturedVarsOptimization extends AbstractBytecodeTextTest { public class CapturedVarsOptimization {
@Test @Test
public void testAllFilesPresentInCapturedVarsOptimization() throws Exception { public void testAllFilesPresentInCapturedVarsOptimization() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/capturedVarsOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/capturedVarsOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -996,7 +996,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/checkcast") @TestMetadata("compiler/testData/codegen/bytecodeText/checkcast")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Checkcast extends AbstractBytecodeTextTest { public class Checkcast {
@Test @Test
public void testAllFilesPresentInCheckcast() throws Exception { public void testAllFilesPresentInCheckcast() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/checkcast"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/checkcast"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1030,7 +1030,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coercionToUnitOptimization") @TestMetadata("compiler/testData/codegen/bytecodeText/coercionToUnitOptimization")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CoercionToUnitOptimization extends AbstractBytecodeTextTest { public class CoercionToUnitOptimization {
@Test @Test
public void testAllFilesPresentInCoercionToUnitOptimization() throws Exception { public void testAllFilesPresentInCoercionToUnitOptimization() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coercionToUnitOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coercionToUnitOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1094,7 +1094,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/companion") @TestMetadata("compiler/testData/codegen/bytecodeText/companion")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Companion extends AbstractBytecodeTextTest { public class Companion {
@Test @Test
public void testAllFilesPresentInCompanion() throws Exception { public void testAllFilesPresentInCompanion() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/companion"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/companion"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1188,7 +1188,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/conditions") @TestMetadata("compiler/testData/codegen/bytecodeText/conditions")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Conditions extends AbstractBytecodeTextTest { public class Conditions {
@Test @Test
public void testAllFilesPresentInConditions() throws Exception { public void testAllFilesPresentInConditions() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/conditions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/conditions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1366,7 +1366,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/constProperty") @TestMetadata("compiler/testData/codegen/bytecodeText/constProperty")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ConstProperty extends AbstractBytecodeTextTest { public class ConstProperty {
@Test @Test
public void testAllFilesPresentInConstProperty() throws Exception { public void testAllFilesPresentInConstProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1406,7 +1406,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/constantConditions") @TestMetadata("compiler/testData/codegen/bytecodeText/constantConditions")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ConstantConditions extends AbstractBytecodeTextTest { public class ConstantConditions {
@Test @Test
public void testAllFilesPresentInConstantConditions() throws Exception { public void testAllFilesPresentInConstantConditions() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constantConditions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constantConditions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1446,7 +1446,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/constants") @TestMetadata("compiler/testData/codegen/bytecodeText/constants")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Constants extends AbstractBytecodeTextTest { public class Constants {
@Test @Test
public void testAllFilesPresentInConstants() throws Exception { public void testAllFilesPresentInConstants() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constants"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constants"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1522,7 +1522,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/constructors") @TestMetadata("compiler/testData/codegen/bytecodeText/constructors")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Constructors extends AbstractBytecodeTextTest { public class Constructors {
@Test @Test
public void testAllFilesPresentInConstructors() throws Exception { public void testAllFilesPresentInConstructors() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constructors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constructors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1586,7 +1586,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/controlStructures") @TestMetadata("compiler/testData/codegen/bytecodeText/controlStructures")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ControlStructures extends AbstractBytecodeTextTest { public class ControlStructures {
@Test @Test
public void testAllFilesPresentInControlStructures() throws Exception { public void testAllFilesPresentInControlStructures() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/controlStructures"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/controlStructures"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1608,7 +1608,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines") @TestMetadata("compiler/testData/codegen/bytecodeText/coroutines")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Coroutines extends AbstractBytecodeTextTest { public class Coroutines {
@Test @Test
public void testAllFilesPresentInCoroutines() throws Exception { public void testAllFilesPresentInCoroutines() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1683,7 +1683,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/cleanup") @TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/cleanup")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Cleanup extends AbstractBytecodeTextTest { public class Cleanup {
@Test @Test
public void testAllFilesPresentInCleanup() throws Exception { public void testAllFilesPresentInCleanup() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/cleanup"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/cleanup"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1741,7 +1741,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/debug") @TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/debug")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Debug extends AbstractBytecodeTextTest { public class Debug {
@Test @Test
public void testAllFilesPresentInDebug() throws Exception { public void testAllFilesPresentInDebug() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/debug"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/debug"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1781,7 +1781,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/destructuringInLambda") @TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/destructuringInLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DestructuringInLambda extends AbstractBytecodeTextTest { public class DestructuringInLambda {
@Test @Test
public void testAllFilesPresentInDestructuringInLambda() throws Exception { public void testAllFilesPresentInDestructuringInLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/destructuringInLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/destructuringInLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1797,7 +1797,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/inlineClasses") @TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/inlineClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineClasses extends AbstractBytecodeTextTest { public class InlineClasses {
@Test @Test
public void testAllFilesPresentInInlineClasses() throws Exception { public void testAllFilesPresentInInlineClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1849,7 +1849,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/intLikeVarSpilling") @TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/intLikeVarSpilling")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class IntLikeVarSpilling extends AbstractBytecodeTextTest { public class IntLikeVarSpilling {
@Test @Test
public void testAllFilesPresentInIntLikeVarSpilling() throws Exception { public void testAllFilesPresentInIntLikeVarSpilling() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/intLikeVarSpilling"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/intLikeVarSpilling"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1919,7 +1919,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/stateMachine") @TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/stateMachine")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StateMachine extends AbstractBytecodeTextTest { public class StateMachine {
@Test @Test
public void testAllFilesPresentInStateMachine() throws Exception { public void testAllFilesPresentInStateMachine() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/stateMachine"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/stateMachine"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1942,7 +1942,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/deadCodeElimination") @TestMetadata("compiler/testData/codegen/bytecodeText/deadCodeElimination")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DeadCodeElimination extends AbstractBytecodeTextTest { public class DeadCodeElimination {
@Test @Test
public void testAllFilesPresentInDeadCodeElimination() throws Exception { public void testAllFilesPresentInDeadCodeElimination() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/deadCodeElimination"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/deadCodeElimination"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2018,7 +2018,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/defaultArguments") @TestMetadata("compiler/testData/codegen/bytecodeText/defaultArguments")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultArguments extends AbstractBytecodeTextTest { public class DefaultArguments {
@Test @Test
public void testAllFilesPresentInDefaultArguments() throws Exception { public void testAllFilesPresentInDefaultArguments() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/defaultArguments"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/defaultArguments"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2088,7 +2088,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/directInvoke") @TestMetadata("compiler/testData/codegen/bytecodeText/directInvoke")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DirectInvoke extends AbstractBytecodeTextTest { public class DirectInvoke {
@Test @Test
public void testAllFilesPresentInDirectInvoke() throws Exception { public void testAllFilesPresentInDirectInvoke() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/directInvoke"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/directInvoke"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2116,7 +2116,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/disabledOptimizations") @TestMetadata("compiler/testData/codegen/bytecodeText/disabledOptimizations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DisabledOptimizations extends AbstractBytecodeTextTest { public class DisabledOptimizations {
@Test @Test
public void testAllFilesPresentInDisabledOptimizations() throws Exception { public void testAllFilesPresentInDisabledOptimizations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/disabledOptimizations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/disabledOptimizations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2162,7 +2162,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/enum") @TestMetadata("compiler/testData/codegen/bytecodeText/enum")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Enum extends AbstractBytecodeTextTest { public class Enum {
@Test @Test
public void testAllFilesPresentInEnum() throws Exception { public void testAllFilesPresentInEnum() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/enum"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/enum"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2196,7 +2196,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/exclExcl") @TestMetadata("compiler/testData/codegen/bytecodeText/exclExcl")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ExclExcl extends AbstractBytecodeTextTest { public class ExclExcl {
@Test @Test
public void testAllFilesPresentInExclExcl() throws Exception { public void testAllFilesPresentInExclExcl() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/exclExcl"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/exclExcl"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2212,7 +2212,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/fieldsForCapturedValues") @TestMetadata("compiler/testData/codegen/bytecodeText/fieldsForCapturedValues")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FieldsForCapturedValues extends AbstractBytecodeTextTest { public class FieldsForCapturedValues {
@Test @Test
public void testAllFilesPresentInFieldsForCapturedValues() throws Exception { public void testAllFilesPresentInFieldsForCapturedValues() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/fieldsForCapturedValues"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/fieldsForCapturedValues"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2276,7 +2276,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForLoop extends AbstractBytecodeTextTest { public class ForLoop {
@Test @Test
public void testAllFilesPresentInForLoop() throws Exception { public void testAllFilesPresentInForLoop() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2435,7 +2435,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInArrayWithIndex") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInArrayWithIndex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInArrayWithIndex extends AbstractBytecodeTextTest { public class ForInArrayWithIndex {
@Test @Test
public void testAllFilesPresentInForInArrayWithIndex() throws Exception { public void testAllFilesPresentInForInArrayWithIndex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInArrayWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInArrayWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2475,7 +2475,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInCharSequenceWithIndex") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInCharSequenceWithIndex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInCharSequenceWithIndex extends AbstractBytecodeTextTest { public class ForInCharSequenceWithIndex {
@Test @Test
public void testAllFilesPresentInForInCharSequenceWithIndex() throws Exception { public void testAllFilesPresentInForInCharSequenceWithIndex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInCharSequenceWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInCharSequenceWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2521,7 +2521,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInIndices") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInIndices")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInIndices extends AbstractBytecodeTextTest { public class ForInIndices {
@Test @Test
public void testAllFilesPresentInForInIndices() throws Exception { public void testAllFilesPresentInForInIndices() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInIndices"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInIndices"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2585,7 +2585,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInIterableWithIndex") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInIterableWithIndex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInIterableWithIndex extends AbstractBytecodeTextTest { public class ForInIterableWithIndex {
@Test @Test
public void testAllFilesPresentInForInIterableWithIndex() throws Exception { public void testAllFilesPresentInForInIterableWithIndex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInIterableWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInIterableWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2631,7 +2631,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInProgressionWithIndex") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInProgressionWithIndex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInProgressionWithIndex extends AbstractBytecodeTextTest { public class ForInProgressionWithIndex {
@Test @Test
public void testAllFilesPresentInForInProgressionWithIndex() throws Exception { public void testAllFilesPresentInForInProgressionWithIndex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInProgressionWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInProgressionWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2713,7 +2713,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInReversed") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInReversed")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInReversed extends AbstractBytecodeTextTest { public class ForInReversed {
@Test @Test
public void testAllFilesPresentInForInReversed() throws Exception { public void testAllFilesPresentInForInReversed() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInReversed"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInReversed"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2801,7 +2801,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInSequenceWithIndex") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInSequenceWithIndex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInSequenceWithIndex extends AbstractBytecodeTextTest { public class ForInSequenceWithIndex {
@Test @Test
public void testAllFilesPresentInForInSequenceWithIndex() throws Exception { public void testAllFilesPresentInForInSequenceWithIndex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInSequenceWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInSequenceWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2853,7 +2853,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInUntil") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInUntil")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInUntil extends AbstractBytecodeTextTest { public class ForInUntil {
@Test @Test
public void testAllFilesPresentInForInUntil() throws Exception { public void testAllFilesPresentInForInUntil() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInUntil"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInUntil"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2917,7 +2917,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/stepped") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/stepped")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Stepped extends AbstractBytecodeTextTest { public class Stepped {
@Test @Test
public void testAllFilesPresentInStepped() throws Exception { public void testAllFilesPresentInStepped() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/stepped"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/stepped"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2927,7 +2927,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/unsigned") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/unsigned")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Unsigned extends AbstractBytecodeTextTest { public class Unsigned {
@Test @Test
public void testAllFilesPresentInUnsigned() throws Exception { public void testAllFilesPresentInUnsigned() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/unsigned"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/unsigned"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2992,7 +2992,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/hashCode") @TestMetadata("compiler/testData/codegen/bytecodeText/hashCode")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class HashCode extends AbstractBytecodeTextTest { public class HashCode {
@Test @Test
public void testAllFilesPresentInHashCode() throws Exception { public void testAllFilesPresentInHashCode() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/hashCode"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/hashCode"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3014,7 +3014,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/ieee754") @TestMetadata("compiler/testData/codegen/bytecodeText/ieee754")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Ieee754 extends AbstractBytecodeTextTest { public class Ieee754 {
@Test @Test
public void testAllFilesPresentInIeee754() throws Exception { public void testAllFilesPresentInIeee754() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/ieee754"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/ieee754"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3072,7 +3072,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/inline") @TestMetadata("compiler/testData/codegen/bytecodeText/inline")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Inline extends AbstractBytecodeTextTest { public class Inline {
@Test @Test
public void testAllFilesPresentInInline() throws Exception { public void testAllFilesPresentInInline() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/inline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/inline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3195,7 +3195,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/inline/property") @TestMetadata("compiler/testData/codegen/bytecodeText/inline/property")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Property extends AbstractBytecodeTextTest { public class Property {
@Test @Test
public void testAllFilesPresentInProperty() throws Exception { public void testAllFilesPresentInProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/inline/property"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/inline/property"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3212,7 +3212,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/inlineClasses") @TestMetadata("compiler/testData/codegen/bytecodeText/inlineClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineClasses extends AbstractBytecodeTextTest { public class InlineClasses {
@Test @Test
public void testAllFilesPresentInInlineClasses() throws Exception { public void testAllFilesPresentInInlineClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3624,7 +3624,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/innerClasses") @TestMetadata("compiler/testData/codegen/bytecodeText/innerClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InnerClasses extends AbstractBytecodeTextTest { public class InnerClasses {
@Test @Test
public void testAllFilesPresentInInnerClasses() throws Exception { public void testAllFilesPresentInInnerClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/innerClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/innerClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3640,7 +3640,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/interfaces") @TestMetadata("compiler/testData/codegen/bytecodeText/interfaces")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Interfaces extends AbstractBytecodeTextTest { public class Interfaces {
@Test @Test
@TestMetadata("addedInterfaceBridge.kt") @TestMetadata("addedInterfaceBridge.kt")
public void testAddedInterfaceBridge() throws Exception { public void testAddedInterfaceBridge() throws Exception {
@@ -3680,7 +3680,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/intrinsics") @TestMetadata("compiler/testData/codegen/bytecodeText/intrinsics")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Intrinsics extends AbstractBytecodeTextTest { public class Intrinsics {
@Test @Test
public void testAllFilesPresentInIntrinsics() throws Exception { public void testAllFilesPresentInIntrinsics() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/intrinsics"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/intrinsics"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3702,7 +3702,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/intrinsicsCompare") @TestMetadata("compiler/testData/codegen/bytecodeText/intrinsicsCompare")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class IntrinsicsCompare extends AbstractBytecodeTextTest { public class IntrinsicsCompare {
@Test @Test
public void testAllFilesPresentInIntrinsicsCompare() throws Exception { public void testAllFilesPresentInIntrinsicsCompare() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/intrinsicsCompare"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/intrinsicsCompare"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3772,7 +3772,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/intrinsicsTrim") @TestMetadata("compiler/testData/codegen/bytecodeText/intrinsicsTrim")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class IntrinsicsTrim extends AbstractBytecodeTextTest { public class IntrinsicsTrim {
@Test @Test
public void testAllFilesPresentInIntrinsicsTrim() throws Exception { public void testAllFilesPresentInIntrinsicsTrim() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/intrinsicsTrim"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/intrinsicsTrim"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3806,7 +3806,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/invokedynamic") @TestMetadata("compiler/testData/codegen/bytecodeText/invokedynamic")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Invokedynamic extends AbstractBytecodeTextTest { public class Invokedynamic {
@Test @Test
public void testAllFilesPresentInInvokedynamic() throws Exception { public void testAllFilesPresentInInvokedynamic() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/invokedynamic"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/invokedynamic"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3822,7 +3822,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/jvm8") @TestMetadata("compiler/testData/codegen/bytecodeText/jvm8")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Jvm8 extends AbstractBytecodeTextTest { public class Jvm8 {
@Test @Test
public void testAllFilesPresentInJvm8() throws Exception { public void testAllFilesPresentInJvm8() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3831,7 +3831,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/hashCode") @TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/hashCode")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class HashCode extends AbstractBytecodeTextTest { public class HashCode {
@Test @Test
public void testAllFilesPresentInHashCode() throws Exception { public void testAllFilesPresentInHashCode() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/hashCode"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/hashCode"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3853,7 +3853,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault") @TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class JvmDefault extends AbstractBytecodeTextTest { public class JvmDefault {
@Test @Test
public void testAllFilesPresentInJvmDefault() throws Exception { public void testAllFilesPresentInJvmDefault() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3862,7 +3862,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/allCompatibility") @TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/allCompatibility")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class AllCompatibility extends AbstractBytecodeTextTest { public class AllCompatibility {
@Test @Test
public void testAllFilesPresentInAllCompatibility() throws Exception { public void testAllFilesPresentInAllCompatibility() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/allCompatibility"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/allCompatibility"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3902,7 +3902,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/compatibility") @TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/compatibility")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Compatibility extends AbstractBytecodeTextTest { public class Compatibility {
@Test @Test
public void testAllFilesPresentInCompatibility() throws Exception { public void testAllFilesPresentInCompatibility() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/compatibility"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/compatibility"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3944,7 +3944,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/lazyCodegen") @TestMetadata("compiler/testData/codegen/bytecodeText/lazyCodegen")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LazyCodegen extends AbstractBytecodeTextTest { public class LazyCodegen {
@Test @Test
public void testAllFilesPresentInLazyCodegen() throws Exception { public void testAllFilesPresentInLazyCodegen() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/lazyCodegen"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/lazyCodegen"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3996,7 +3996,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/lineNumbers") @TestMetadata("compiler/testData/codegen/bytecodeText/lineNumbers")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LineNumbers extends AbstractBytecodeTextTest { public class LineNumbers {
@Test @Test
public void testAllFilesPresentInLineNumbers() throws Exception { public void testAllFilesPresentInLineNumbers() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/lineNumbers"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/lineNumbers"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4078,7 +4078,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/localInitializationLVT") @TestMetadata("compiler/testData/codegen/bytecodeText/localInitializationLVT")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LocalInitializationLVT extends AbstractBytecodeTextTest { public class LocalInitializationLVT {
@Test @Test
public void testAllFilesPresentInLocalInitializationLVT() throws Exception { public void testAllFilesPresentInLocalInitializationLVT() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/localInitializationLVT"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/localInitializationLVT"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4202,7 +4202,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/mangling") @TestMetadata("compiler/testData/codegen/bytecodeText/mangling")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Mangling extends AbstractBytecodeTextTest { public class Mangling {
@Test @Test
public void testAllFilesPresentInMangling() throws Exception { public void testAllFilesPresentInMangling() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/mangling"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/mangling"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4224,7 +4224,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/multifileClasses") @TestMetadata("compiler/testData/codegen/bytecodeText/multifileClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MultifileClasses extends AbstractBytecodeTextTest { public class MultifileClasses {
@Test @Test
public void testAllFilesPresentInMultifileClasses() throws Exception { public void testAllFilesPresentInMultifileClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/multifileClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/multifileClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4252,7 +4252,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/notNullAssertions") @TestMetadata("compiler/testData/codegen/bytecodeText/notNullAssertions")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NotNullAssertions extends AbstractBytecodeTextTest { public class NotNullAssertions {
@Test @Test
public void testAllFilesPresentInNotNullAssertions() throws Exception { public void testAllFilesPresentInNotNullAssertions() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/notNullAssertions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/notNullAssertions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4328,7 +4328,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/nullCheckOptimization") @TestMetadata("compiler/testData/codegen/bytecodeText/nullCheckOptimization")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NullCheckOptimization extends AbstractBytecodeTextTest { public class NullCheckOptimization {
@Test @Test
public void testAllFilesPresentInNullCheckOptimization() throws Exception { public void testAllFilesPresentInNullCheckOptimization() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/nullCheckOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/nullCheckOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4475,7 +4475,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/nullCheckOptimization/localLateinit") @TestMetadata("compiler/testData/codegen/bytecodeText/nullCheckOptimization/localLateinit")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LocalLateinit extends AbstractBytecodeTextTest { public class LocalLateinit {
@Test @Test
public void testAllFilesPresentInLocalLateinit() throws Exception { public void testAllFilesPresentInLocalLateinit() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/nullCheckOptimization/localLateinit"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/nullCheckOptimization/localLateinit"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4504,7 +4504,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/oldLanguageVersions") @TestMetadata("compiler/testData/codegen/bytecodeText/oldLanguageVersions")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class OldLanguageVersions extends AbstractBytecodeTextTest { public class OldLanguageVersions {
@Test @Test
public void testAllFilesPresentInOldLanguageVersions() throws Exception { public void testAllFilesPresentInOldLanguageVersions() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/oldLanguageVersions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/oldLanguageVersions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4519,7 +4519,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/oldLanguageVersions/constProperty") @TestMetadata("compiler/testData/codegen/bytecodeText/oldLanguageVersions/constProperty")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ConstProperty extends AbstractBytecodeTextTest { public class ConstProperty {
@Test @Test
@TestMetadata("accessorsForPrivateConstants.kt") @TestMetadata("accessorsForPrivateConstants.kt")
public void testAccessorsForPrivateConstants() throws Exception { public void testAccessorsForPrivateConstants() throws Exception {
@@ -4535,7 +4535,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/oldLanguageVersions/ieee754") @TestMetadata("compiler/testData/codegen/bytecodeText/oldLanguageVersions/ieee754")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Ieee754 extends AbstractBytecodeTextTest { public class Ieee754 {
@Test @Test
public void testAllFilesPresentInIeee754() throws Exception { public void testAllFilesPresentInIeee754() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/oldLanguageVersions/ieee754"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/oldLanguageVersions/ieee754"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4594,7 +4594,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/optimizedDelegatedProperties") @TestMetadata("compiler/testData/codegen/bytecodeText/optimizedDelegatedProperties")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class OptimizedDelegatedProperties extends AbstractBytecodeTextTest { public class OptimizedDelegatedProperties {
@Test @Test
public void testAllFilesPresentInOptimizedDelegatedProperties() throws Exception { public void testAllFilesPresentInOptimizedDelegatedProperties() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/optimizedDelegatedProperties"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/optimizedDelegatedProperties"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4628,7 +4628,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/parameterlessMain") @TestMetadata("compiler/testData/codegen/bytecodeText/parameterlessMain")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ParameterlessMain extends AbstractBytecodeTextTest { public class ParameterlessMain {
@Test @Test
public void testAllFilesPresentInParameterlessMain() throws Exception { public void testAllFilesPresentInParameterlessMain() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/parameterlessMain"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/parameterlessMain"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4680,7 +4680,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/properties") @TestMetadata("compiler/testData/codegen/bytecodeText/properties")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Properties extends AbstractBytecodeTextTest { public class Properties {
@Test @Test
public void testAllFilesPresentInProperties() throws Exception { public void testAllFilesPresentInProperties() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/properties"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/properties"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4701,7 +4701,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/properties/lateinit") @TestMetadata("compiler/testData/codegen/bytecodeText/properties/lateinit")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Lateinit extends AbstractBytecodeTextTest { public class Lateinit {
@Test @Test
public void testAllFilesPresentInLateinit() throws Exception { public void testAllFilesPresentInLateinit() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/properties/lateinit"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/properties/lateinit"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4724,7 +4724,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/ranges") @TestMetadata("compiler/testData/codegen/bytecodeText/ranges")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Ranges extends AbstractBytecodeTextTest { public class Ranges {
@Test @Test
public void testAllFilesPresentInRanges() throws Exception { public void testAllFilesPresentInRanges() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/ranges"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/ranges"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4806,7 +4806,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/sam") @TestMetadata("compiler/testData/codegen/bytecodeText/sam")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Sam extends AbstractBytecodeTextTest { public class Sam {
@Test @Test
public void testAllFilesPresentInSam() throws Exception { public void testAllFilesPresentInSam() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4852,7 +4852,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/statements") @TestMetadata("compiler/testData/codegen/bytecodeText/statements")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Statements extends AbstractBytecodeTextTest { public class Statements {
@Test @Test
public void testAllFilesPresentInStatements() throws Exception { public void testAllFilesPresentInStatements() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/statements"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/statements"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4910,7 +4910,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/staticFields") @TestMetadata("compiler/testData/codegen/bytecodeText/staticFields")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StaticFields extends AbstractBytecodeTextTest { public class StaticFields {
@Test @Test
public void testAllFilesPresentInStaticFields() throws Exception { public void testAllFilesPresentInStaticFields() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/staticFields"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/staticFields"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4932,7 +4932,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/storeStackBeforeInline") @TestMetadata("compiler/testData/codegen/bytecodeText/storeStackBeforeInline")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StoreStackBeforeInline extends AbstractBytecodeTextTest { public class StoreStackBeforeInline {
@Test @Test
public void testAllFilesPresentInStoreStackBeforeInline() throws Exception { public void testAllFilesPresentInStoreStackBeforeInline() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/storeStackBeforeInline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/storeStackBeforeInline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4972,7 +4972,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/stringOperations") @TestMetadata("compiler/testData/codegen/bytecodeText/stringOperations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StringOperations extends AbstractBytecodeTextTest { public class StringOperations {
@Test @Test
public void testAllFilesPresentInStringOperations() throws Exception { public void testAllFilesPresentInStringOperations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/stringOperations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/stringOperations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -5174,7 +5174,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/toArray") @TestMetadata("compiler/testData/codegen/bytecodeText/toArray")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ToArray extends AbstractBytecodeTextTest { public class ToArray {
@Test @Test
public void testAllFilesPresentInToArray() throws Exception { public void testAllFilesPresentInToArray() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/toArray"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/toArray"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -5190,7 +5190,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/unsignedTypes") @TestMetadata("compiler/testData/codegen/bytecodeText/unsignedTypes")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class UnsignedTypes extends AbstractBytecodeTextTest { public class UnsignedTypes {
@Test @Test
public void testAllFilesPresentInUnsignedTypes() throws Exception { public void testAllFilesPresentInUnsignedTypes() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/unsignedTypes"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/unsignedTypes"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -5266,7 +5266,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/varargs") @TestMetadata("compiler/testData/codegen/bytecodeText/varargs")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Varargs extends AbstractBytecodeTextTest { public class Varargs {
@Test @Test
public void testAllFilesPresentInVarargs() throws Exception { public void testAllFilesPresentInVarargs() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/varargs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/varargs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -5282,7 +5282,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/when") @TestMetadata("compiler/testData/codegen/bytecodeText/when")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class When extends AbstractBytecodeTextTest { public class When {
@Test @Test
public void testAllFilesPresentInWhen() throws Exception { public void testAllFilesPresentInWhen() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/when"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/when"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -5442,7 +5442,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/whenEnumOptimization") @TestMetadata("compiler/testData/codegen/bytecodeText/whenEnumOptimization")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class WhenEnumOptimization extends AbstractBytecodeTextTest { public class WhenEnumOptimization {
@Test @Test
public void testAllFilesPresentInWhenEnumOptimization() throws Exception { public void testAllFilesPresentInWhenEnumOptimization() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/whenEnumOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/whenEnumOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -5536,7 +5536,7 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/whenStringOptimization") @TestMetadata("compiler/testData/codegen/bytecodeText/whenStringOptimization")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class WhenStringOptimization extends AbstractBytecodeTextTest { public class WhenStringOptimization {
@Test @Test
public void testAllFilesPresentInWhenStringOptimization() throws Exception { public void testAllFilesPresentInWhenStringOptimization() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/whenStringOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/whenStringOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -28,7 +28,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class AnonymousObject extends AbstractCompileKotlinAgainstInlineKotlinTest { public class AnonymousObject {
@Test @Test
public void testAllFilesPresentInAnonymousObject() throws Exception { public void testAllFilesPresentInAnonymousObject() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -403,7 +403,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/enumWhen") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/enumWhen")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class EnumWhen extends AbstractCompileKotlinAgainstInlineKotlinTest { public class EnumWhen {
@Test @Test
public void testAllFilesPresentInEnumWhen() throws Exception { public void testAllFilesPresentInEnumWhen() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/enumWhen"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/enumWhen"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -437,7 +437,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ProperRecapturing extends AbstractCompileKotlinAgainstInlineKotlinTest { public class ProperRecapturing {
@Test @Test
public void testAllFilesPresentInProperRecapturing() throws Exception { public void testAllFilesPresentInProperRecapturing() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -483,7 +483,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ProperRecapturingInClass extends AbstractCompileKotlinAgainstInlineKotlinTest { public class ProperRecapturingInClass {
@Test @Test
public void testAllFilesPresentInProperRecapturingInClass() throws Exception { public void testAllFilesPresentInProperRecapturingInClass() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -565,7 +565,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/sam") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/sam")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Sam extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Sam {
@Test @Test
public void testAllFilesPresentInSam() throws Exception { public void testAllFilesPresentInSam() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -617,7 +617,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TwoCapturedReceivers extends AbstractCompileKotlinAgainstInlineKotlinTest { public class TwoCapturedReceivers {
@Test @Test
public void testAllFilesPresentInTwoCapturedReceivers() throws Exception { public void testAllFilesPresentInTwoCapturedReceivers() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -658,7 +658,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/argumentOrder") @TestMetadata("compiler/testData/codegen/boxInline/argumentOrder")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ArgumentOrder extends AbstractCompileKotlinAgainstInlineKotlinTest { public class ArgumentOrder {
@Test @Test
public void testAllFilesPresentInArgumentOrder() throws Exception { public void testAllFilesPresentInArgumentOrder() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/argumentOrder"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/argumentOrder"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -752,7 +752,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/arrayConvention") @TestMetadata("compiler/testData/codegen/boxInline/arrayConvention")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ArrayConvention extends AbstractCompileKotlinAgainstInlineKotlinTest { public class ArrayConvention {
@Test @Test
public void testAllFilesPresentInArrayConvention() throws Exception { public void testAllFilesPresentInArrayConvention() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/arrayConvention"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/arrayConvention"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -798,7 +798,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/assert") @TestMetadata("compiler/testData/codegen/boxInline/assert")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Assert extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Assert {
@Test @Test
public void testAllFilesPresentInAssert() throws Exception { public void testAllFilesPresentInAssert() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/assert"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/assert"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -880,7 +880,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/builders") @TestMetadata("compiler/testData/codegen/boxInline/builders")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Builders extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Builders {
@Test @Test
public void testAllFilesPresentInBuilders() throws Exception { public void testAllFilesPresentInBuilders() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/builders"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/builders"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -902,7 +902,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/bytecodePreprocessing") @TestMetadata("compiler/testData/codegen/boxInline/bytecodePreprocessing")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class BytecodePreprocessing extends AbstractCompileKotlinAgainstInlineKotlinTest { public class BytecodePreprocessing {
@Test @Test
public void testAllFilesPresentInBytecodePreprocessing() throws Exception { public void testAllFilesPresentInBytecodePreprocessing() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/bytecodePreprocessing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/bytecodePreprocessing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -918,7 +918,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/callableReference") @TestMetadata("compiler/testData/codegen/boxInline/callableReference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReference extends AbstractCompileKotlinAgainstInlineKotlinTest { public class CallableReference {
@Test @Test
@TestMetadata("adapted.kt") @TestMetadata("adapted.kt")
public void testAdapted() throws Exception { public void testAdapted() throws Exception {
@@ -1023,7 +1023,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/callableReference/bound") @TestMetadata("compiler/testData/codegen/boxInline/callableReference/bound")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Bound extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Bound {
@Test @Test
public void testAllFilesPresentInBound() throws Exception { public void testAllFilesPresentInBound() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/callableReference/bound"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/callableReference/bound"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1184,7 +1184,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/capture") @TestMetadata("compiler/testData/codegen/boxInline/capture")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Capture extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Capture {
@Test @Test
public void testAllFilesPresentInCapture() throws Exception { public void testAllFilesPresentInCapture() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/capture"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/capture"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1230,7 +1230,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/complex") @TestMetadata("compiler/testData/codegen/boxInline/complex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Complex extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Complex {
@Test @Test
public void testAllFilesPresentInComplex() throws Exception { public void testAllFilesPresentInComplex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1288,7 +1288,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/complexStack") @TestMetadata("compiler/testData/codegen/boxInline/complexStack")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ComplexStack extends AbstractCompileKotlinAgainstInlineKotlinTest { public class ComplexStack {
@Test @Test
public void testAllFilesPresentInComplexStack() throws Exception { public void testAllFilesPresentInComplexStack() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complexStack"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complexStack"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1352,7 +1352,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/contracts") @TestMetadata("compiler/testData/codegen/boxInline/contracts")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Contracts extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Contracts {
@Test @Test
public void testAllFilesPresentInContracts() throws Exception { public void testAllFilesPresentInContracts() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/contracts"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/contracts"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1452,7 +1452,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultValues extends AbstractCompileKotlinAgainstInlineKotlinTest { public class DefaultValues {
@Test @Test
@TestMetadata("33Parameters.kt") @TestMetadata("33Parameters.kt")
public void test33Parameters() throws Exception { public void test33Parameters() throws Exception {
@@ -1581,7 +1581,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LambdaInlining extends AbstractCompileKotlinAgainstInlineKotlinTest { public class LambdaInlining {
@Test @Test
public void testAllFilesPresentInLambdaInlining() throws Exception { public void testAllFilesPresentInLambdaInlining() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1782,7 +1782,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReferences extends AbstractCompileKotlinAgainstInlineKotlinTest { public class CallableReferences {
@Test @Test
public void testAllFilesPresentInCallableReferences() throws Exception { public void testAllFilesPresentInCallableReferences() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -1925,7 +1925,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/maskElimination") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues/maskElimination")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MaskElimination extends AbstractCompileKotlinAgainstInlineKotlinTest { public class MaskElimination {
@Test @Test
@TestMetadata("32Parameters.kt") @TestMetadata("32Parameters.kt")
public void test32Parameters() throws Exception { public void test32Parameters() throws Exception {
@@ -1978,7 +1978,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/delegatedProperty") @TestMetadata("compiler/testData/codegen/boxInline/delegatedProperty")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DelegatedProperty extends AbstractCompileKotlinAgainstInlineKotlinTest { public class DelegatedProperty {
@Test @Test
public void testAllFilesPresentInDelegatedProperty() throws Exception { public void testAllFilesPresentInDelegatedProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/delegatedProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/delegatedProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2018,7 +2018,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/enclosingInfo") @TestMetadata("compiler/testData/codegen/boxInline/enclosingInfo")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class EnclosingInfo extends AbstractCompileKotlinAgainstInlineKotlinTest { public class EnclosingInfo {
@Test @Test
public void testAllFilesPresentInEnclosingInfo() throws Exception { public void testAllFilesPresentInEnclosingInfo() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enclosingInfo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enclosingInfo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2070,7 +2070,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/enum") @TestMetadata("compiler/testData/codegen/boxInline/enum")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Enum extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Enum {
@Test @Test
public void testAllFilesPresentInEnum() throws Exception { public void testAllFilesPresentInEnum() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enum"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enum"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2158,7 +2158,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/functionExpression") @TestMetadata("compiler/testData/codegen/boxInline/functionExpression")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FunctionExpression extends AbstractCompileKotlinAgainstInlineKotlinTest { public class FunctionExpression {
@Test @Test
public void testAllFilesPresentInFunctionExpression() throws Exception { public void testAllFilesPresentInFunctionExpression() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/functionExpression"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/functionExpression"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2174,7 +2174,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineClasses extends AbstractCompileKotlinAgainstInlineKotlinTest { public class InlineClasses {
@Test @Test
public void testAllFilesPresentInInlineClasses() throws Exception { public void testAllFilesPresentInInlineClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2231,7 +2231,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class UnboxGenericParameter extends AbstractCompileKotlinAgainstInlineKotlinTest { public class UnboxGenericParameter {
@Test @Test
public void testAllFilesPresentInUnboxGenericParameter() throws Exception { public void testAllFilesPresentInUnboxGenericParameter() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2240,7 +2240,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FunInterface extends AbstractCompileKotlinAgainstInlineKotlinTest { public class FunInterface {
@Test @Test
public void testAllFilesPresentInFunInterface() throws Exception { public void testAllFilesPresentInFunInterface() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2286,7 +2286,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Lambda extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Lambda {
@Test @Test
public void testAllFilesPresentInLambda() throws Exception { public void testAllFilesPresentInLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2332,7 +2332,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ObjectLiteral extends AbstractCompileKotlinAgainstInlineKotlinTest { public class ObjectLiteral {
@Test @Test
public void testAllFilesPresentInObjectLiteral() throws Exception { public void testAllFilesPresentInObjectLiteral() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2380,7 +2380,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/innerClasses") @TestMetadata("compiler/testData/codegen/boxInline/innerClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InnerClasses extends AbstractCompileKotlinAgainstInlineKotlinTest { public class InnerClasses {
@Test @Test
public void testAllFilesPresentInInnerClasses() throws Exception { public void testAllFilesPresentInInnerClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/innerClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/innerClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2408,7 +2408,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/jvmName") @TestMetadata("compiler/testData/codegen/boxInline/jvmName")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class JvmName extends AbstractCompileKotlinAgainstInlineKotlinTest { public class JvmName {
@Test @Test
public void testAllFilesPresentInJvmName() throws Exception { public void testAllFilesPresentInJvmName() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2424,7 +2424,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/jvmPackageName") @TestMetadata("compiler/testData/codegen/boxInline/jvmPackageName")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class JvmPackageName extends AbstractCompileKotlinAgainstInlineKotlinTest { public class JvmPackageName {
@Test @Test
public void testAllFilesPresentInJvmPackageName() throws Exception { public void testAllFilesPresentInJvmPackageName() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmPackageName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmPackageName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2440,7 +2440,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/lambdaClassClash") @TestMetadata("compiler/testData/codegen/boxInline/lambdaClassClash")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LambdaClassClash extends AbstractCompileKotlinAgainstInlineKotlinTest { public class LambdaClassClash {
@Test @Test
public void testAllFilesPresentInLambdaClassClash() throws Exception { public void testAllFilesPresentInLambdaClassClash() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaClassClash"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaClassClash"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2462,7 +2462,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/lambdaTransformation") @TestMetadata("compiler/testData/codegen/boxInline/lambdaTransformation")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LambdaTransformation extends AbstractCompileKotlinAgainstInlineKotlinTest { public class LambdaTransformation {
@Test @Test
public void testAllFilesPresentInLambdaTransformation() throws Exception { public void testAllFilesPresentInLambdaTransformation() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaTransformation"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaTransformation"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2508,7 +2508,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/localFunInLambda") @TestMetadata("compiler/testData/codegen/boxInline/localFunInLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LocalFunInLambda extends AbstractCompileKotlinAgainstInlineKotlinTest { public class LocalFunInLambda {
@Test @Test
public void testAllFilesPresentInLocalFunInLambda() throws Exception { public void testAllFilesPresentInLocalFunInLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/localFunInLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/localFunInLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2542,7 +2542,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multiModule") @TestMetadata("compiler/testData/codegen/boxInline/multiModule")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MultiModule extends AbstractCompileKotlinAgainstInlineKotlinTest { public class MultiModule {
@Test @Test
public void testAllFilesPresentInMultiModule() throws Exception { public void testAllFilesPresentInMultiModule() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2558,7 +2558,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multifileClasses") @TestMetadata("compiler/testData/codegen/boxInline/multifileClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MultifileClasses extends AbstractCompileKotlinAgainstInlineKotlinTest { public class MultifileClasses {
@Test @Test
public void testAllFilesPresentInMultifileClasses() throws Exception { public void testAllFilesPresentInMultifileClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multifileClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multifileClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2586,7 +2586,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multiplatform") @TestMetadata("compiler/testData/codegen/boxInline/multiplatform")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Multiplatform extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Multiplatform {
@Test @Test
public void testAllFilesPresentInMultiplatform() throws Exception { public void testAllFilesPresentInMultiplatform() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2595,7 +2595,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multiplatform/defaultArguments") @TestMetadata("compiler/testData/codegen/boxInline/multiplatform/defaultArguments")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultArguments extends AbstractCompileKotlinAgainstInlineKotlinTest { public class DefaultArguments {
@Test @Test
public void testAllFilesPresentInDefaultArguments() throws Exception { public void testAllFilesPresentInDefaultArguments() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform/defaultArguments"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform/defaultArguments"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2612,7 +2612,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/noInline") @TestMetadata("compiler/testData/codegen/boxInline/noInline")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NoInline extends AbstractCompileKotlinAgainstInlineKotlinTest { public class NoInline {
@Test @Test
public void testAllFilesPresentInNoInline() throws Exception { public void testAllFilesPresentInNoInline() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/noInline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/noInline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2664,7 +2664,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NonLocalReturns extends AbstractCompileKotlinAgainstInlineKotlinTest { public class NonLocalReturns {
@Test @Test
public void testAllFilesPresentInNonLocalReturns() throws Exception { public void testAllFilesPresentInNonLocalReturns() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2805,7 +2805,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Deparenthesize extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Deparenthesize {
@Test @Test
public void testAllFilesPresentInDeparenthesize() throws Exception { public void testAllFilesPresentInDeparenthesize() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2827,7 +2827,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TryFinally extends AbstractCompileKotlinAgainstInlineKotlinTest { public class TryFinally {
@Test @Test
public void testAllFilesPresentInTryFinally() throws Exception { public void testAllFilesPresentInTryFinally() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2914,7 +2914,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallSite extends AbstractCompileKotlinAgainstInlineKotlinTest { public class CallSite {
@Test @Test
public void testAllFilesPresentInCallSite() throws Exception { public void testAllFilesPresentInCallSite() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -2960,7 +2960,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Chained extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Chained {
@Test @Test
public void testAllFilesPresentInChained() throws Exception { public void testAllFilesPresentInChained() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3018,7 +3018,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DeclSite extends AbstractCompileKotlinAgainstInlineKotlinTest { public class DeclSite {
@Test @Test
public void testAllFilesPresentInDeclSite() throws Exception { public void testAllFilesPresentInDeclSite() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3100,7 +3100,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ExceptionTable extends AbstractCompileKotlinAgainstInlineKotlinTest { public class ExceptionTable {
@Test @Test
public void testAllFilesPresentInExceptionTable() throws Exception { public void testAllFilesPresentInExceptionTable() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3236,7 +3236,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Variables extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Variables {
@Test @Test
public void testAllFilesPresentInVariables() throws Exception { public void testAllFilesPresentInVariables() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3254,7 +3254,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/optimizations") @TestMetadata("compiler/testData/codegen/boxInline/optimizations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Optimizations extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Optimizations {
@Test @Test
public void testAllFilesPresentInOptimizations() throws Exception { public void testAllFilesPresentInOptimizations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/optimizations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/optimizations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3270,7 +3270,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/private") @TestMetadata("compiler/testData/codegen/boxInline/private")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Private extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Private {
@Test @Test
@TestMetadata("accessorForConst.kt") @TestMetadata("accessorForConst.kt")
public void testAccessorForConst() throws Exception { public void testAccessorForConst() throws Exception {
@@ -3352,7 +3352,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/property") @TestMetadata("compiler/testData/codegen/boxInline/property")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Property extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Property {
@Test @Test
public void testAllFilesPresentInProperty() throws Exception { public void testAllFilesPresentInProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/property"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/property"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3440,7 +3440,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified") @TestMetadata("compiler/testData/codegen/boxInline/reified")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Reified extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Reified {
@Test @Test
public void testAllFilesPresentInReified() throws Exception { public void testAllFilesPresentInReified() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3599,7 +3599,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/checkCast") @TestMetadata("compiler/testData/codegen/boxInline/reified/checkCast")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CheckCast extends AbstractCompileKotlinAgainstInlineKotlinTest { public class CheckCast {
@Test @Test
public void testAllFilesPresentInCheckCast() throws Exception { public void testAllFilesPresentInCheckCast() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/checkCast"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/checkCast"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3669,7 +3669,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/defaultLambda") @TestMetadata("compiler/testData/codegen/boxInline/reified/defaultLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultLambda extends AbstractCompileKotlinAgainstInlineKotlinTest { public class DefaultLambda {
@Test @Test
public void testAllFilesPresentInDefaultLambda() throws Exception { public void testAllFilesPresentInDefaultLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3727,7 +3727,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/isCheck") @TestMetadata("compiler/testData/codegen/boxInline/reified/isCheck")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class IsCheck extends AbstractCompileKotlinAgainstInlineKotlinTest { public class IsCheck {
@Test @Test
public void testAllFilesPresentInIsCheck() throws Exception { public void testAllFilesPresentInIsCheck() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/isCheck"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/isCheck"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3756,7 +3756,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/signature") @TestMetadata("compiler/testData/codegen/boxInline/signature")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Signature extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Signature {
@Test @Test
public void testAllFilesPresentInSignature() throws Exception { public void testAllFilesPresentInSignature() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/signature"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/signature"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3820,7 +3820,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/simple") @TestMetadata("compiler/testData/codegen/boxInline/simple")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Simple extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Simple {
@Test @Test
public void testAllFilesPresentInSimple() throws Exception { public void testAllFilesPresentInSimple() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/simple"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/simple"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -3974,7 +3974,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap") @TestMetadata("compiler/testData/codegen/boxInline/smap")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Smap extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Smap {
@Test @Test
public void testAllFilesPresentInSmap() throws Exception { public void testAllFilesPresentInSmap() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4097,7 +4097,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/anonymous") @TestMetadata("compiler/testData/codegen/boxInline/smap/anonymous")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Anonymous extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Anonymous {
@Test @Test
public void testAllFilesPresentInAnonymous() throws Exception { public void testAllFilesPresentInAnonymous() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/anonymous"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/anonymous"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4167,7 +4167,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/defaultLambda") @TestMetadata("compiler/testData/codegen/boxInline/smap/defaultLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultLambda extends AbstractCompileKotlinAgainstInlineKotlinTest { public class DefaultLambda {
@Test @Test
public void testAllFilesPresentInDefaultLambda() throws Exception { public void testAllFilesPresentInDefaultLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4231,7 +4231,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/inlineOnly") @TestMetadata("compiler/testData/codegen/boxInline/smap/inlineOnly")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineOnly extends AbstractCompileKotlinAgainstInlineKotlinTest { public class InlineOnly {
@Test @Test
public void testAllFilesPresentInInlineOnly() throws Exception { public void testAllFilesPresentInInlineOnly() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/inlineOnly"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/inlineOnly"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4277,7 +4277,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/newsmap") @TestMetadata("compiler/testData/codegen/boxInline/smap/newsmap")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Newsmap extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Newsmap {
@Test @Test
public void testAllFilesPresentInNewsmap() throws Exception { public void testAllFilesPresentInNewsmap() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/newsmap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/newsmap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4311,7 +4311,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/resolve") @TestMetadata("compiler/testData/codegen/boxInline/smap/resolve")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Resolve extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Resolve {
@Test @Test
public void testAllFilesPresentInResolve() throws Exception { public void testAllFilesPresentInResolve() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/resolve"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/resolve"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4334,7 +4334,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/special") @TestMetadata("compiler/testData/codegen/boxInline/special")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Special extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Special {
@Test @Test
public void testAllFilesPresentInSpecial() throws Exception { public void testAllFilesPresentInSpecial() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/special"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/special"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4398,7 +4398,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/stackOnReturn") @TestMetadata("compiler/testData/codegen/boxInline/stackOnReturn")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StackOnReturn extends AbstractCompileKotlinAgainstInlineKotlinTest { public class StackOnReturn {
@Test @Test
public void testAllFilesPresentInStackOnReturn() throws Exception { public void testAllFilesPresentInStackOnReturn() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/stackOnReturn"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/stackOnReturn"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4504,7 +4504,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend") @TestMetadata("compiler/testData/codegen/boxInline/suspend")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Suspend extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Suspend {
@Test @Test
public void testAllFilesPresentInSuspend() throws Exception { public void testAllFilesPresentInSuspend() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4693,7 +4693,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/callableReference") @TestMetadata("compiler/testData/codegen/boxInline/suspend/callableReference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReference extends AbstractCompileKotlinAgainstInlineKotlinTest { public class CallableReference {
@Test @Test
public void testAllFilesPresentInCallableReference() throws Exception { public void testAllFilesPresentInCallableReference() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/callableReference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/callableReference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4733,7 +4733,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/defaultParameter") @TestMetadata("compiler/testData/codegen/boxInline/suspend/defaultParameter")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultParameter extends AbstractCompileKotlinAgainstInlineKotlinTest { public class DefaultParameter {
@Test @Test
public void testAllFilesPresentInDefaultParameter() throws Exception { public void testAllFilesPresentInDefaultParameter() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/defaultParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/defaultParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4767,7 +4767,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineClass") @TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineClass")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineClass extends AbstractCompileKotlinAgainstInlineKotlinTest { public class InlineClass {
@Test @Test
public void testAllFilesPresentInInlineClass() throws Exception { public void testAllFilesPresentInInlineClass() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4789,7 +4789,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline") @TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineUsedAsNoinline extends AbstractCompileKotlinAgainstInlineKotlinTest { public class InlineUsedAsNoinline {
@Test @Test
public void testAllFilesPresentInInlineUsedAsNoinline() throws Exception { public void testAllFilesPresentInInlineUsedAsNoinline() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4823,7 +4823,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/receiver") @TestMetadata("compiler/testData/codegen/boxInline/suspend/receiver")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Receiver extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Receiver {
@Test @Test
public void testAllFilesPresentInReceiver() throws Exception { public void testAllFilesPresentInReceiver() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/receiver"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/receiver"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -4881,7 +4881,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/stateMachine") @TestMetadata("compiler/testData/codegen/boxInline/suspend/stateMachine")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StateMachine extends AbstractCompileKotlinAgainstInlineKotlinTest { public class StateMachine {
@Test @Test
public void testAllFilesPresentInStateMachine() throws Exception { public void testAllFilesPresentInStateMachine() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/stateMachine"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/stateMachine"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -5030,7 +5030,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors") @TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class SyntheticAccessors extends AbstractCompileKotlinAgainstInlineKotlinTest { public class SyntheticAccessors {
@Test @Test
public void testAllFilesPresentInSyntheticAccessors() throws Exception { public void testAllFilesPresentInSyntheticAccessors() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -5087,7 +5087,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda") @TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class WithinInlineLambda extends AbstractCompileKotlinAgainstInlineKotlinTest { public class WithinInlineLambda {
@Test @Test
public void testAllFilesPresentInWithinInlineLambda() throws Exception { public void testAllFilesPresentInWithinInlineLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -5152,7 +5152,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/trait") @TestMetadata("compiler/testData/codegen/boxInline/trait")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Trait extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Trait {
@Test @Test
public void testAllFilesPresentInTrait() throws Exception { public void testAllFilesPresentInTrait() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/trait"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/trait"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -5168,7 +5168,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/tryCatchFinally") @TestMetadata("compiler/testData/codegen/boxInline/tryCatchFinally")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TryCatchFinally extends AbstractCompileKotlinAgainstInlineKotlinTest { public class TryCatchFinally {
@Test @Test
public void testAllFilesPresentInTryCatchFinally() throws Exception { public void testAllFilesPresentInTryCatchFinally() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/tryCatchFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/tryCatchFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -5202,7 +5202,7 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/varargs") @TestMetadata("compiler/testData/codegen/boxInline/varargs")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Varargs extends AbstractCompileKotlinAgainstInlineKotlinTest { public class Varargs {
@Test @Test
public void testAllFilesPresentInVarargs() throws Exception { public void testAllFilesPresentInVarargs() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/varargs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/varargs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
@@ -28,7 +28,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class AnonymousObject extends AbstractIrBlackBoxInlineCodegenTest { public class AnonymousObject {
@Test @Test
public void testAllFilesPresentInAnonymousObject() throws Exception { public void testAllFilesPresentInAnonymousObject() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -403,7 +403,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/enumWhen") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/enumWhen")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class EnumWhen extends AbstractIrBlackBoxInlineCodegenTest { public class EnumWhen {
@Test @Test
public void testAllFilesPresentInEnumWhen() throws Exception { public void testAllFilesPresentInEnumWhen() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/enumWhen"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/enumWhen"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -437,7 +437,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ProperRecapturing extends AbstractIrBlackBoxInlineCodegenTest { public class ProperRecapturing {
@Test @Test
public void testAllFilesPresentInProperRecapturing() throws Exception { public void testAllFilesPresentInProperRecapturing() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -483,7 +483,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ProperRecapturingInClass extends AbstractIrBlackBoxInlineCodegenTest { public class ProperRecapturingInClass {
@Test @Test
public void testAllFilesPresentInProperRecapturingInClass() throws Exception { public void testAllFilesPresentInProperRecapturingInClass() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -565,7 +565,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/sam") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/sam")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Sam extends AbstractIrBlackBoxInlineCodegenTest { public class Sam {
@Test @Test
public void testAllFilesPresentInSam() throws Exception { public void testAllFilesPresentInSam() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -617,7 +617,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TwoCapturedReceivers extends AbstractIrBlackBoxInlineCodegenTest { public class TwoCapturedReceivers {
@Test @Test
public void testAllFilesPresentInTwoCapturedReceivers() throws Exception { public void testAllFilesPresentInTwoCapturedReceivers() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -658,7 +658,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/argumentOrder") @TestMetadata("compiler/testData/codegen/boxInline/argumentOrder")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ArgumentOrder extends AbstractIrBlackBoxInlineCodegenTest { public class ArgumentOrder {
@Test @Test
public void testAllFilesPresentInArgumentOrder() throws Exception { public void testAllFilesPresentInArgumentOrder() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/argumentOrder"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/argumentOrder"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -752,7 +752,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/arrayConvention") @TestMetadata("compiler/testData/codegen/boxInline/arrayConvention")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ArrayConvention extends AbstractIrBlackBoxInlineCodegenTest { public class ArrayConvention {
@Test @Test
public void testAllFilesPresentInArrayConvention() throws Exception { public void testAllFilesPresentInArrayConvention() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/arrayConvention"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/arrayConvention"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -798,7 +798,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/assert") @TestMetadata("compiler/testData/codegen/boxInline/assert")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Assert extends AbstractIrBlackBoxInlineCodegenTest { public class Assert {
@Test @Test
public void testAllFilesPresentInAssert() throws Exception { public void testAllFilesPresentInAssert() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/assert"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/assert"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -880,7 +880,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/builders") @TestMetadata("compiler/testData/codegen/boxInline/builders")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Builders extends AbstractIrBlackBoxInlineCodegenTest { public class Builders {
@Test @Test
public void testAllFilesPresentInBuilders() throws Exception { public void testAllFilesPresentInBuilders() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/builders"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/builders"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -902,7 +902,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/bytecodePreprocessing") @TestMetadata("compiler/testData/codegen/boxInline/bytecodePreprocessing")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class BytecodePreprocessing extends AbstractIrBlackBoxInlineCodegenTest { public class BytecodePreprocessing {
@Test @Test
public void testAllFilesPresentInBytecodePreprocessing() throws Exception { public void testAllFilesPresentInBytecodePreprocessing() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/bytecodePreprocessing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/bytecodePreprocessing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -918,7 +918,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/callableReference") @TestMetadata("compiler/testData/codegen/boxInline/callableReference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReference extends AbstractIrBlackBoxInlineCodegenTest { public class CallableReference {
@Test @Test
@TestMetadata("adapted.kt") @TestMetadata("adapted.kt")
public void testAdapted() throws Exception { public void testAdapted() throws Exception {
@@ -1023,7 +1023,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/callableReference/bound") @TestMetadata("compiler/testData/codegen/boxInline/callableReference/bound")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Bound extends AbstractIrBlackBoxInlineCodegenTest { public class Bound {
@Test @Test
public void testAllFilesPresentInBound() throws Exception { public void testAllFilesPresentInBound() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/callableReference/bound"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/callableReference/bound"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1184,7 +1184,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/capture") @TestMetadata("compiler/testData/codegen/boxInline/capture")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Capture extends AbstractIrBlackBoxInlineCodegenTest { public class Capture {
@Test @Test
public void testAllFilesPresentInCapture() throws Exception { public void testAllFilesPresentInCapture() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/capture"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/capture"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1230,7 +1230,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/complex") @TestMetadata("compiler/testData/codegen/boxInline/complex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Complex extends AbstractIrBlackBoxInlineCodegenTest { public class Complex {
@Test @Test
public void testAllFilesPresentInComplex() throws Exception { public void testAllFilesPresentInComplex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1288,7 +1288,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/complexStack") @TestMetadata("compiler/testData/codegen/boxInline/complexStack")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ComplexStack extends AbstractIrBlackBoxInlineCodegenTest { public class ComplexStack {
@Test @Test
public void testAllFilesPresentInComplexStack() throws Exception { public void testAllFilesPresentInComplexStack() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complexStack"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complexStack"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1352,7 +1352,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/contracts") @TestMetadata("compiler/testData/codegen/boxInline/contracts")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Contracts extends AbstractIrBlackBoxInlineCodegenTest { public class Contracts {
@Test @Test
public void testAllFilesPresentInContracts() throws Exception { public void testAllFilesPresentInContracts() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/contracts"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/contracts"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1452,7 +1452,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultValues extends AbstractIrBlackBoxInlineCodegenTest { public class DefaultValues {
@Test @Test
@TestMetadata("33Parameters.kt") @TestMetadata("33Parameters.kt")
public void test33Parameters() throws Exception { public void test33Parameters() throws Exception {
@@ -1581,7 +1581,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LambdaInlining extends AbstractIrBlackBoxInlineCodegenTest { public class LambdaInlining {
@Test @Test
public void testAllFilesPresentInLambdaInlining() throws Exception { public void testAllFilesPresentInLambdaInlining() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1782,7 +1782,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReferences extends AbstractIrBlackBoxInlineCodegenTest { public class CallableReferences {
@Test @Test
public void testAllFilesPresentInCallableReferences() throws Exception { public void testAllFilesPresentInCallableReferences() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1925,7 +1925,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/maskElimination") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues/maskElimination")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MaskElimination extends AbstractIrBlackBoxInlineCodegenTest { public class MaskElimination {
@Test @Test
@TestMetadata("32Parameters.kt") @TestMetadata("32Parameters.kt")
public void test32Parameters() throws Exception { public void test32Parameters() throws Exception {
@@ -1978,7 +1978,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/delegatedProperty") @TestMetadata("compiler/testData/codegen/boxInline/delegatedProperty")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DelegatedProperty extends AbstractIrBlackBoxInlineCodegenTest { public class DelegatedProperty {
@Test @Test
public void testAllFilesPresentInDelegatedProperty() throws Exception { public void testAllFilesPresentInDelegatedProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/delegatedProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/delegatedProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2018,7 +2018,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/enclosingInfo") @TestMetadata("compiler/testData/codegen/boxInline/enclosingInfo")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class EnclosingInfo extends AbstractIrBlackBoxInlineCodegenTest { public class EnclosingInfo {
@Test @Test
public void testAllFilesPresentInEnclosingInfo() throws Exception { public void testAllFilesPresentInEnclosingInfo() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enclosingInfo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enclosingInfo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2070,7 +2070,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/enum") @TestMetadata("compiler/testData/codegen/boxInline/enum")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Enum extends AbstractIrBlackBoxInlineCodegenTest { public class Enum {
@Test @Test
public void testAllFilesPresentInEnum() throws Exception { public void testAllFilesPresentInEnum() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enum"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enum"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2158,7 +2158,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/functionExpression") @TestMetadata("compiler/testData/codegen/boxInline/functionExpression")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FunctionExpression extends AbstractIrBlackBoxInlineCodegenTest { public class FunctionExpression {
@Test @Test
public void testAllFilesPresentInFunctionExpression() throws Exception { public void testAllFilesPresentInFunctionExpression() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/functionExpression"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/functionExpression"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2174,7 +2174,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineClasses extends AbstractIrBlackBoxInlineCodegenTest { public class InlineClasses {
@Test @Test
public void testAllFilesPresentInInlineClasses() throws Exception { public void testAllFilesPresentInInlineClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2231,7 +2231,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class UnboxGenericParameter extends AbstractIrBlackBoxInlineCodegenTest { public class UnboxGenericParameter {
@Test @Test
public void testAllFilesPresentInUnboxGenericParameter() throws Exception { public void testAllFilesPresentInUnboxGenericParameter() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2240,7 +2240,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FunInterface extends AbstractIrBlackBoxInlineCodegenTest { public class FunInterface {
@Test @Test
public void testAllFilesPresentInFunInterface() throws Exception { public void testAllFilesPresentInFunInterface() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2286,7 +2286,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Lambda extends AbstractIrBlackBoxInlineCodegenTest { public class Lambda {
@Test @Test
public void testAllFilesPresentInLambda() throws Exception { public void testAllFilesPresentInLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2332,7 +2332,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ObjectLiteral extends AbstractIrBlackBoxInlineCodegenTest { public class ObjectLiteral {
@Test @Test
public void testAllFilesPresentInObjectLiteral() throws Exception { public void testAllFilesPresentInObjectLiteral() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2380,7 +2380,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/innerClasses") @TestMetadata("compiler/testData/codegen/boxInline/innerClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InnerClasses extends AbstractIrBlackBoxInlineCodegenTest { public class InnerClasses {
@Test @Test
public void testAllFilesPresentInInnerClasses() throws Exception { public void testAllFilesPresentInInnerClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/innerClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/innerClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2408,7 +2408,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/jvmName") @TestMetadata("compiler/testData/codegen/boxInline/jvmName")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class JvmName extends AbstractIrBlackBoxInlineCodegenTest { public class JvmName {
@Test @Test
public void testAllFilesPresentInJvmName() throws Exception { public void testAllFilesPresentInJvmName() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2424,7 +2424,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/jvmPackageName") @TestMetadata("compiler/testData/codegen/boxInline/jvmPackageName")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class JvmPackageName extends AbstractIrBlackBoxInlineCodegenTest { public class JvmPackageName {
@Test @Test
public void testAllFilesPresentInJvmPackageName() throws Exception { public void testAllFilesPresentInJvmPackageName() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmPackageName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmPackageName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2440,7 +2440,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/lambdaClassClash") @TestMetadata("compiler/testData/codegen/boxInline/lambdaClassClash")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LambdaClassClash extends AbstractIrBlackBoxInlineCodegenTest { public class LambdaClassClash {
@Test @Test
public void testAllFilesPresentInLambdaClassClash() throws Exception { public void testAllFilesPresentInLambdaClassClash() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaClassClash"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaClassClash"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2462,7 +2462,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/lambdaTransformation") @TestMetadata("compiler/testData/codegen/boxInline/lambdaTransformation")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LambdaTransformation extends AbstractIrBlackBoxInlineCodegenTest { public class LambdaTransformation {
@Test @Test
public void testAllFilesPresentInLambdaTransformation() throws Exception { public void testAllFilesPresentInLambdaTransformation() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaTransformation"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaTransformation"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2508,7 +2508,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/localFunInLambda") @TestMetadata("compiler/testData/codegen/boxInline/localFunInLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LocalFunInLambda extends AbstractIrBlackBoxInlineCodegenTest { public class LocalFunInLambda {
@Test @Test
public void testAllFilesPresentInLocalFunInLambda() throws Exception { public void testAllFilesPresentInLocalFunInLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/localFunInLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/localFunInLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2542,7 +2542,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multiModule") @TestMetadata("compiler/testData/codegen/boxInline/multiModule")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MultiModule extends AbstractIrBlackBoxInlineCodegenTest { public class MultiModule {
@Test @Test
public void testAllFilesPresentInMultiModule() throws Exception { public void testAllFilesPresentInMultiModule() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2558,7 +2558,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multifileClasses") @TestMetadata("compiler/testData/codegen/boxInline/multifileClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MultifileClasses extends AbstractIrBlackBoxInlineCodegenTest { public class MultifileClasses {
@Test @Test
public void testAllFilesPresentInMultifileClasses() throws Exception { public void testAllFilesPresentInMultifileClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multifileClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multifileClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2586,7 +2586,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multiplatform") @TestMetadata("compiler/testData/codegen/boxInline/multiplatform")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Multiplatform extends AbstractIrBlackBoxInlineCodegenTest { public class Multiplatform {
@Test @Test
public void testAllFilesPresentInMultiplatform() throws Exception { public void testAllFilesPresentInMultiplatform() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2595,7 +2595,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multiplatform/defaultArguments") @TestMetadata("compiler/testData/codegen/boxInline/multiplatform/defaultArguments")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultArguments extends AbstractIrBlackBoxInlineCodegenTest { public class DefaultArguments {
@Test @Test
public void testAllFilesPresentInDefaultArguments() throws Exception { public void testAllFilesPresentInDefaultArguments() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform/defaultArguments"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform/defaultArguments"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2612,7 +2612,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/noInline") @TestMetadata("compiler/testData/codegen/boxInline/noInline")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NoInline extends AbstractIrBlackBoxInlineCodegenTest { public class NoInline {
@Test @Test
public void testAllFilesPresentInNoInline() throws Exception { public void testAllFilesPresentInNoInline() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/noInline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/noInline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2664,7 +2664,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NonLocalReturns extends AbstractIrBlackBoxInlineCodegenTest { public class NonLocalReturns {
@Test @Test
public void testAllFilesPresentInNonLocalReturns() throws Exception { public void testAllFilesPresentInNonLocalReturns() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2805,7 +2805,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Deparenthesize extends AbstractIrBlackBoxInlineCodegenTest { public class Deparenthesize {
@Test @Test
public void testAllFilesPresentInDeparenthesize() throws Exception { public void testAllFilesPresentInDeparenthesize() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2827,7 +2827,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TryFinally extends AbstractIrBlackBoxInlineCodegenTest { public class TryFinally {
@Test @Test
public void testAllFilesPresentInTryFinally() throws Exception { public void testAllFilesPresentInTryFinally() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2914,7 +2914,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallSite extends AbstractIrBlackBoxInlineCodegenTest { public class CallSite {
@Test @Test
public void testAllFilesPresentInCallSite() throws Exception { public void testAllFilesPresentInCallSite() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2960,7 +2960,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Chained extends AbstractIrBlackBoxInlineCodegenTest { public class Chained {
@Test @Test
public void testAllFilesPresentInChained() throws Exception { public void testAllFilesPresentInChained() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3018,7 +3018,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DeclSite extends AbstractIrBlackBoxInlineCodegenTest { public class DeclSite {
@Test @Test
public void testAllFilesPresentInDeclSite() throws Exception { public void testAllFilesPresentInDeclSite() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3100,7 +3100,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ExceptionTable extends AbstractIrBlackBoxInlineCodegenTest { public class ExceptionTable {
@Test @Test
public void testAllFilesPresentInExceptionTable() throws Exception { public void testAllFilesPresentInExceptionTable() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3236,7 +3236,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Variables extends AbstractIrBlackBoxInlineCodegenTest { public class Variables {
@Test @Test
public void testAllFilesPresentInVariables() throws Exception { public void testAllFilesPresentInVariables() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3254,7 +3254,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/optimizations") @TestMetadata("compiler/testData/codegen/boxInline/optimizations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Optimizations extends AbstractIrBlackBoxInlineCodegenTest { public class Optimizations {
@Test @Test
public void testAllFilesPresentInOptimizations() throws Exception { public void testAllFilesPresentInOptimizations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/optimizations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/optimizations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3270,7 +3270,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/private") @TestMetadata("compiler/testData/codegen/boxInline/private")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Private extends AbstractIrBlackBoxInlineCodegenTest { public class Private {
@Test @Test
@TestMetadata("accessorForConst.kt") @TestMetadata("accessorForConst.kt")
public void testAccessorForConst() throws Exception { public void testAccessorForConst() throws Exception {
@@ -3352,7 +3352,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/property") @TestMetadata("compiler/testData/codegen/boxInline/property")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Property extends AbstractIrBlackBoxInlineCodegenTest { public class Property {
@Test @Test
public void testAllFilesPresentInProperty() throws Exception { public void testAllFilesPresentInProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/property"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/property"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3440,7 +3440,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified") @TestMetadata("compiler/testData/codegen/boxInline/reified")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Reified extends AbstractIrBlackBoxInlineCodegenTest { public class Reified {
@Test @Test
public void testAllFilesPresentInReified() throws Exception { public void testAllFilesPresentInReified() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3599,7 +3599,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/checkCast") @TestMetadata("compiler/testData/codegen/boxInline/reified/checkCast")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CheckCast extends AbstractIrBlackBoxInlineCodegenTest { public class CheckCast {
@Test @Test
public void testAllFilesPresentInCheckCast() throws Exception { public void testAllFilesPresentInCheckCast() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/checkCast"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/checkCast"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3669,7 +3669,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/defaultLambda") @TestMetadata("compiler/testData/codegen/boxInline/reified/defaultLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultLambda extends AbstractIrBlackBoxInlineCodegenTest { public class DefaultLambda {
@Test @Test
public void testAllFilesPresentInDefaultLambda() throws Exception { public void testAllFilesPresentInDefaultLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3727,7 +3727,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/isCheck") @TestMetadata("compiler/testData/codegen/boxInline/reified/isCheck")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class IsCheck extends AbstractIrBlackBoxInlineCodegenTest { public class IsCheck {
@Test @Test
public void testAllFilesPresentInIsCheck() throws Exception { public void testAllFilesPresentInIsCheck() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/isCheck"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/isCheck"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3756,7 +3756,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/signature") @TestMetadata("compiler/testData/codegen/boxInline/signature")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Signature extends AbstractIrBlackBoxInlineCodegenTest { public class Signature {
@Test @Test
public void testAllFilesPresentInSignature() throws Exception { public void testAllFilesPresentInSignature() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/signature"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/signature"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3820,7 +3820,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/simple") @TestMetadata("compiler/testData/codegen/boxInline/simple")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Simple extends AbstractIrBlackBoxInlineCodegenTest { public class Simple {
@Test @Test
public void testAllFilesPresentInSimple() throws Exception { public void testAllFilesPresentInSimple() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/simple"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/simple"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3974,7 +3974,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap") @TestMetadata("compiler/testData/codegen/boxInline/smap")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Smap extends AbstractIrBlackBoxInlineCodegenTest { public class Smap {
@Test @Test
public void testAllFilesPresentInSmap() throws Exception { public void testAllFilesPresentInSmap() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4097,7 +4097,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/anonymous") @TestMetadata("compiler/testData/codegen/boxInline/smap/anonymous")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Anonymous extends AbstractIrBlackBoxInlineCodegenTest { public class Anonymous {
@Test @Test
public void testAllFilesPresentInAnonymous() throws Exception { public void testAllFilesPresentInAnonymous() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/anonymous"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/anonymous"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4167,7 +4167,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/defaultLambda") @TestMetadata("compiler/testData/codegen/boxInline/smap/defaultLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultLambda extends AbstractIrBlackBoxInlineCodegenTest { public class DefaultLambda {
@Test @Test
public void testAllFilesPresentInDefaultLambda() throws Exception { public void testAllFilesPresentInDefaultLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4231,7 +4231,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/inlineOnly") @TestMetadata("compiler/testData/codegen/boxInline/smap/inlineOnly")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineOnly extends AbstractIrBlackBoxInlineCodegenTest { public class InlineOnly {
@Test @Test
public void testAllFilesPresentInInlineOnly() throws Exception { public void testAllFilesPresentInInlineOnly() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/inlineOnly"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/inlineOnly"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4277,7 +4277,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/newsmap") @TestMetadata("compiler/testData/codegen/boxInline/smap/newsmap")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Newsmap extends AbstractIrBlackBoxInlineCodegenTest { public class Newsmap {
@Test @Test
public void testAllFilesPresentInNewsmap() throws Exception { public void testAllFilesPresentInNewsmap() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/newsmap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/newsmap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4311,7 +4311,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/resolve") @TestMetadata("compiler/testData/codegen/boxInline/smap/resolve")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Resolve extends AbstractIrBlackBoxInlineCodegenTest { public class Resolve {
@Test @Test
public void testAllFilesPresentInResolve() throws Exception { public void testAllFilesPresentInResolve() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/resolve"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/resolve"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4334,7 +4334,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/special") @TestMetadata("compiler/testData/codegen/boxInline/special")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Special extends AbstractIrBlackBoxInlineCodegenTest { public class Special {
@Test @Test
public void testAllFilesPresentInSpecial() throws Exception { public void testAllFilesPresentInSpecial() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/special"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/special"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4398,7 +4398,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/stackOnReturn") @TestMetadata("compiler/testData/codegen/boxInline/stackOnReturn")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StackOnReturn extends AbstractIrBlackBoxInlineCodegenTest { public class StackOnReturn {
@Test @Test
public void testAllFilesPresentInStackOnReturn() throws Exception { public void testAllFilesPresentInStackOnReturn() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/stackOnReturn"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/stackOnReturn"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4504,7 +4504,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend") @TestMetadata("compiler/testData/codegen/boxInline/suspend")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Suspend extends AbstractIrBlackBoxInlineCodegenTest { public class Suspend {
@Test @Test
public void testAllFilesPresentInSuspend() throws Exception { public void testAllFilesPresentInSuspend() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4693,7 +4693,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/callableReference") @TestMetadata("compiler/testData/codegen/boxInline/suspend/callableReference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReference extends AbstractIrBlackBoxInlineCodegenTest { public class CallableReference {
@Test @Test
public void testAllFilesPresentInCallableReference() throws Exception { public void testAllFilesPresentInCallableReference() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/callableReference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/callableReference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4733,7 +4733,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/defaultParameter") @TestMetadata("compiler/testData/codegen/boxInline/suspend/defaultParameter")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultParameter extends AbstractIrBlackBoxInlineCodegenTest { public class DefaultParameter {
@Test @Test
public void testAllFilesPresentInDefaultParameter() throws Exception { public void testAllFilesPresentInDefaultParameter() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/defaultParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/defaultParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4767,7 +4767,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineClass") @TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineClass")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineClass extends AbstractIrBlackBoxInlineCodegenTest { public class InlineClass {
@Test @Test
public void testAllFilesPresentInInlineClass() throws Exception { public void testAllFilesPresentInInlineClass() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4789,7 +4789,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline") @TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineUsedAsNoinline extends AbstractIrBlackBoxInlineCodegenTest { public class InlineUsedAsNoinline {
@Test @Test
public void testAllFilesPresentInInlineUsedAsNoinline() throws Exception { public void testAllFilesPresentInInlineUsedAsNoinline() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4823,7 +4823,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/receiver") @TestMetadata("compiler/testData/codegen/boxInline/suspend/receiver")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Receiver extends AbstractIrBlackBoxInlineCodegenTest { public class Receiver {
@Test @Test
public void testAllFilesPresentInReceiver() throws Exception { public void testAllFilesPresentInReceiver() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/receiver"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/receiver"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4881,7 +4881,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/stateMachine") @TestMetadata("compiler/testData/codegen/boxInline/suspend/stateMachine")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StateMachine extends AbstractIrBlackBoxInlineCodegenTest { public class StateMachine {
@Test @Test
public void testAllFilesPresentInStateMachine() throws Exception { public void testAllFilesPresentInStateMachine() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/stateMachine"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/stateMachine"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5030,7 +5030,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors") @TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class SyntheticAccessors extends AbstractIrBlackBoxInlineCodegenTest { public class SyntheticAccessors {
@Test @Test
public void testAllFilesPresentInSyntheticAccessors() throws Exception { public void testAllFilesPresentInSyntheticAccessors() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5087,7 +5087,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda") @TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class WithinInlineLambda extends AbstractIrBlackBoxInlineCodegenTest { public class WithinInlineLambda {
@Test @Test
public void testAllFilesPresentInWithinInlineLambda() throws Exception { public void testAllFilesPresentInWithinInlineLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5152,7 +5152,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/trait") @TestMetadata("compiler/testData/codegen/boxInline/trait")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Trait extends AbstractIrBlackBoxInlineCodegenTest { public class Trait {
@Test @Test
public void testAllFilesPresentInTrait() throws Exception { public void testAllFilesPresentInTrait() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/trait"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/trait"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5168,7 +5168,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/tryCatchFinally") @TestMetadata("compiler/testData/codegen/boxInline/tryCatchFinally")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TryCatchFinally extends AbstractIrBlackBoxInlineCodegenTest { public class TryCatchFinally {
@Test @Test
public void testAllFilesPresentInTryCatchFinally() throws Exception { public void testAllFilesPresentInTryCatchFinally() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/tryCatchFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/tryCatchFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5202,7 +5202,7 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/varargs") @TestMetadata("compiler/testData/codegen/boxInline/varargs")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Varargs extends AbstractIrBlackBoxInlineCodegenTest { public class Varargs {
@Test @Test
public void testAllFilesPresentInVarargs() throws Exception { public void testAllFilesPresentInVarargs() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/varargs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/varargs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -520,7 +520,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/argumentOrder") @TestMetadata("compiler/testData/codegen/bytecodeText/argumentOrder")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ArgumentOrder extends AbstractIrBytecodeTextTest { public class ArgumentOrder {
@Test @Test
public void testAllFilesPresentInArgumentOrder() throws Exception { public void testAllFilesPresentInArgumentOrder() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/argumentOrder"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/argumentOrder"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -542,7 +542,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/assert") @TestMetadata("compiler/testData/codegen/bytecodeText/assert")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Assert extends AbstractIrBytecodeTextTest { public class Assert {
@Test @Test
public void testAllFilesPresentInAssert() throws Exception { public void testAllFilesPresentInAssert() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/assert"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/assert"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -582,7 +582,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/boxing") @TestMetadata("compiler/testData/codegen/bytecodeText/boxing")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Boxing extends AbstractIrBytecodeTextTest { public class Boxing {
@Test @Test
public void testAllFilesPresentInBoxing() throws Exception { public void testAllFilesPresentInBoxing() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/boxing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/boxing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -610,7 +610,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/boxingOptimization") @TestMetadata("compiler/testData/codegen/bytecodeText/boxingOptimization")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class BoxingOptimization extends AbstractIrBytecodeTextTest { public class BoxingOptimization {
@Test @Test
public void testAllFilesPresentInBoxingOptimization() throws Exception { public void testAllFilesPresentInBoxingOptimization() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/boxingOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/boxingOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -770,7 +770,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/builtinFunctions") @TestMetadata("compiler/testData/codegen/bytecodeText/builtinFunctions")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class BuiltinFunctions extends AbstractIrBytecodeTextTest { public class BuiltinFunctions {
@Test @Test
public void testAllFilesPresentInBuiltinFunctions() throws Exception { public void testAllFilesPresentInBuiltinFunctions() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/builtinFunctions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/builtinFunctions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -803,7 +803,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/builtinFunctions/genericParameterBridge") @TestMetadata("compiler/testData/codegen/bytecodeText/builtinFunctions/genericParameterBridge")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class GenericParameterBridge extends AbstractIrBytecodeTextTest { public class GenericParameterBridge {
@Test @Test
@TestMetadata("abstractList.kt") @TestMetadata("abstractList.kt")
public void testAbstractList() throws Exception { public void testAbstractList() throws Exception {
@@ -856,7 +856,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/callableReference") @TestMetadata("compiler/testData/codegen/bytecodeText/callableReference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReference extends AbstractIrBytecodeTextTest { public class CallableReference {
@Test @Test
public void testAllFilesPresentInCallableReference() throws Exception { public void testAllFilesPresentInCallableReference() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/callableReference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/callableReference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -920,7 +920,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/capturedVarsOptimization") @TestMetadata("compiler/testData/codegen/bytecodeText/capturedVarsOptimization")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CapturedVarsOptimization extends AbstractIrBytecodeTextTest { public class CapturedVarsOptimization {
@Test @Test
public void testAllFilesPresentInCapturedVarsOptimization() throws Exception { public void testAllFilesPresentInCapturedVarsOptimization() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/capturedVarsOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/capturedVarsOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -996,7 +996,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/checkcast") @TestMetadata("compiler/testData/codegen/bytecodeText/checkcast")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Checkcast extends AbstractIrBytecodeTextTest { public class Checkcast {
@Test @Test
public void testAllFilesPresentInCheckcast() throws Exception { public void testAllFilesPresentInCheckcast() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/checkcast"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/checkcast"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1030,7 +1030,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coercionToUnitOptimization") @TestMetadata("compiler/testData/codegen/bytecodeText/coercionToUnitOptimization")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CoercionToUnitOptimization extends AbstractIrBytecodeTextTest { public class CoercionToUnitOptimization {
@Test @Test
public void testAllFilesPresentInCoercionToUnitOptimization() throws Exception { public void testAllFilesPresentInCoercionToUnitOptimization() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coercionToUnitOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coercionToUnitOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1094,7 +1094,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/companion") @TestMetadata("compiler/testData/codegen/bytecodeText/companion")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Companion extends AbstractIrBytecodeTextTest { public class Companion {
@Test @Test
public void testAllFilesPresentInCompanion() throws Exception { public void testAllFilesPresentInCompanion() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/companion"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/companion"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1188,7 +1188,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/conditions") @TestMetadata("compiler/testData/codegen/bytecodeText/conditions")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Conditions extends AbstractIrBytecodeTextTest { public class Conditions {
@Test @Test
public void testAllFilesPresentInConditions() throws Exception { public void testAllFilesPresentInConditions() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/conditions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/conditions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1366,7 +1366,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/constProperty") @TestMetadata("compiler/testData/codegen/bytecodeText/constProperty")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ConstProperty extends AbstractIrBytecodeTextTest { public class ConstProperty {
@Test @Test
public void testAllFilesPresentInConstProperty() throws Exception { public void testAllFilesPresentInConstProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1406,7 +1406,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/constantConditions") @TestMetadata("compiler/testData/codegen/bytecodeText/constantConditions")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ConstantConditions extends AbstractIrBytecodeTextTest { public class ConstantConditions {
@Test @Test
public void testAllFilesPresentInConstantConditions() throws Exception { public void testAllFilesPresentInConstantConditions() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constantConditions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constantConditions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1446,7 +1446,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/constants") @TestMetadata("compiler/testData/codegen/bytecodeText/constants")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Constants extends AbstractIrBytecodeTextTest { public class Constants {
@Test @Test
public void testAllFilesPresentInConstants() throws Exception { public void testAllFilesPresentInConstants() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constants"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constants"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1534,7 +1534,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/constructors") @TestMetadata("compiler/testData/codegen/bytecodeText/constructors")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Constructors extends AbstractIrBytecodeTextTest { public class Constructors {
@Test @Test
public void testAllFilesPresentInConstructors() throws Exception { public void testAllFilesPresentInConstructors() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constructors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/constructors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1598,7 +1598,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/controlStructures") @TestMetadata("compiler/testData/codegen/bytecodeText/controlStructures")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ControlStructures extends AbstractIrBytecodeTextTest { public class ControlStructures {
@Test @Test
public void testAllFilesPresentInControlStructures() throws Exception { public void testAllFilesPresentInControlStructures() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/controlStructures"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/controlStructures"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1620,7 +1620,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines") @TestMetadata("compiler/testData/codegen/bytecodeText/coroutines")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Coroutines extends AbstractIrBytecodeTextTest { public class Coroutines {
@Test @Test
public void testAllFilesPresentInCoroutines() throws Exception { public void testAllFilesPresentInCoroutines() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1695,7 +1695,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/cleanup") @TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/cleanup")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Cleanup extends AbstractIrBytecodeTextTest { public class Cleanup {
@Test @Test
public void testAllFilesPresentInCleanup() throws Exception { public void testAllFilesPresentInCleanup() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/cleanup"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/cleanup"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1753,7 +1753,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/debug") @TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/debug")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Debug extends AbstractIrBytecodeTextTest { public class Debug {
@Test @Test
public void testAllFilesPresentInDebug() throws Exception { public void testAllFilesPresentInDebug() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/debug"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/debug"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1793,7 +1793,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/destructuringInLambda") @TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/destructuringInLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DestructuringInLambda extends AbstractIrBytecodeTextTest { public class DestructuringInLambda {
@Test @Test
public void testAllFilesPresentInDestructuringInLambda() throws Exception { public void testAllFilesPresentInDestructuringInLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/destructuringInLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/destructuringInLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1809,7 +1809,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/inlineClasses") @TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/inlineClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineClasses extends AbstractIrBytecodeTextTest { public class InlineClasses {
@Test @Test
public void testAllFilesPresentInInlineClasses() throws Exception { public void testAllFilesPresentInInlineClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1861,7 +1861,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/intLikeVarSpilling") @TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/intLikeVarSpilling")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class IntLikeVarSpilling extends AbstractIrBytecodeTextTest { public class IntLikeVarSpilling {
@Test @Test
public void testAllFilesPresentInIntLikeVarSpilling() throws Exception { public void testAllFilesPresentInIntLikeVarSpilling() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/intLikeVarSpilling"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/intLikeVarSpilling"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1931,7 +1931,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/stateMachine") @TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/stateMachine")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StateMachine extends AbstractIrBytecodeTextTest { public class StateMachine {
@Test @Test
public void testAllFilesPresentInStateMachine() throws Exception { public void testAllFilesPresentInStateMachine() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/stateMachine"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/coroutines/stateMachine"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1954,7 +1954,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/deadCodeElimination") @TestMetadata("compiler/testData/codegen/bytecodeText/deadCodeElimination")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DeadCodeElimination extends AbstractIrBytecodeTextTest { public class DeadCodeElimination {
@Test @Test
public void testAllFilesPresentInDeadCodeElimination() throws Exception { public void testAllFilesPresentInDeadCodeElimination() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/deadCodeElimination"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/deadCodeElimination"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2030,7 +2030,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/defaultArguments") @TestMetadata("compiler/testData/codegen/bytecodeText/defaultArguments")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultArguments extends AbstractIrBytecodeTextTest { public class DefaultArguments {
@Test @Test
public void testAllFilesPresentInDefaultArguments() throws Exception { public void testAllFilesPresentInDefaultArguments() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/defaultArguments"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/defaultArguments"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2100,7 +2100,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/directInvoke") @TestMetadata("compiler/testData/codegen/bytecodeText/directInvoke")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DirectInvoke extends AbstractIrBytecodeTextTest { public class DirectInvoke {
@Test @Test
public void testAllFilesPresentInDirectInvoke() throws Exception { public void testAllFilesPresentInDirectInvoke() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/directInvoke"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/directInvoke"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2128,7 +2128,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/disabledOptimizations") @TestMetadata("compiler/testData/codegen/bytecodeText/disabledOptimizations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DisabledOptimizations extends AbstractIrBytecodeTextTest { public class DisabledOptimizations {
@Test @Test
public void testAllFilesPresentInDisabledOptimizations() throws Exception { public void testAllFilesPresentInDisabledOptimizations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/disabledOptimizations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/disabledOptimizations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2174,7 +2174,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/enum") @TestMetadata("compiler/testData/codegen/bytecodeText/enum")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Enum extends AbstractIrBytecodeTextTest { public class Enum {
@Test @Test
public void testAllFilesPresentInEnum() throws Exception { public void testAllFilesPresentInEnum() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/enum"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/enum"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2208,7 +2208,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/exclExcl") @TestMetadata("compiler/testData/codegen/bytecodeText/exclExcl")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ExclExcl extends AbstractIrBytecodeTextTest { public class ExclExcl {
@Test @Test
public void testAllFilesPresentInExclExcl() throws Exception { public void testAllFilesPresentInExclExcl() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/exclExcl"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/exclExcl"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2224,7 +2224,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/fieldsForCapturedValues") @TestMetadata("compiler/testData/codegen/bytecodeText/fieldsForCapturedValues")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FieldsForCapturedValues extends AbstractIrBytecodeTextTest { public class FieldsForCapturedValues {
@Test @Test
public void testAllFilesPresentInFieldsForCapturedValues() throws Exception { public void testAllFilesPresentInFieldsForCapturedValues() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/fieldsForCapturedValues"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/fieldsForCapturedValues"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2288,7 +2288,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForLoop extends AbstractIrBytecodeTextTest { public class ForLoop {
@Test @Test
public void testAllFilesPresentInForLoop() throws Exception { public void testAllFilesPresentInForLoop() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2447,7 +2447,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInArrayWithIndex") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInArrayWithIndex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInArrayWithIndex extends AbstractIrBytecodeTextTest { public class ForInArrayWithIndex {
@Test @Test
public void testAllFilesPresentInForInArrayWithIndex() throws Exception { public void testAllFilesPresentInForInArrayWithIndex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInArrayWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInArrayWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2487,7 +2487,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInCharSequenceWithIndex") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInCharSequenceWithIndex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInCharSequenceWithIndex extends AbstractIrBytecodeTextTest { public class ForInCharSequenceWithIndex {
@Test @Test
public void testAllFilesPresentInForInCharSequenceWithIndex() throws Exception { public void testAllFilesPresentInForInCharSequenceWithIndex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInCharSequenceWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInCharSequenceWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2533,7 +2533,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInIndices") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInIndices")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInIndices extends AbstractIrBytecodeTextTest { public class ForInIndices {
@Test @Test
public void testAllFilesPresentInForInIndices() throws Exception { public void testAllFilesPresentInForInIndices() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInIndices"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInIndices"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2597,7 +2597,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInIterableWithIndex") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInIterableWithIndex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInIterableWithIndex extends AbstractIrBytecodeTextTest { public class ForInIterableWithIndex {
@Test @Test
public void testAllFilesPresentInForInIterableWithIndex() throws Exception { public void testAllFilesPresentInForInIterableWithIndex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInIterableWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInIterableWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2643,7 +2643,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInProgressionWithIndex") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInProgressionWithIndex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInProgressionWithIndex extends AbstractIrBytecodeTextTest { public class ForInProgressionWithIndex {
@Test @Test
public void testAllFilesPresentInForInProgressionWithIndex() throws Exception { public void testAllFilesPresentInForInProgressionWithIndex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInProgressionWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInProgressionWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2725,7 +2725,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInReversed") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInReversed")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInReversed extends AbstractIrBytecodeTextTest { public class ForInReversed {
@Test @Test
public void testAllFilesPresentInForInReversed() throws Exception { public void testAllFilesPresentInForInReversed() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInReversed"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInReversed"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2813,7 +2813,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInSequenceWithIndex") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInSequenceWithIndex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInSequenceWithIndex extends AbstractIrBytecodeTextTest { public class ForInSequenceWithIndex {
@Test @Test
public void testAllFilesPresentInForInSequenceWithIndex() throws Exception { public void testAllFilesPresentInForInSequenceWithIndex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInSequenceWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInSequenceWithIndex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2865,7 +2865,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInUntil") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInUntil")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ForInUntil extends AbstractIrBytecodeTextTest { public class ForInUntil {
@Test @Test
public void testAllFilesPresentInForInUntil() throws Exception { public void testAllFilesPresentInForInUntil() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInUntil"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/forInUntil"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2929,7 +2929,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/stepped") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/stepped")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Stepped extends AbstractIrBytecodeTextTest { public class Stepped {
@Test @Test
public void testAllFilesPresentInStepped() throws Exception { public void testAllFilesPresentInStepped() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/stepped"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/stepped"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3023,7 +3023,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/unsigned") @TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/unsigned")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Unsigned extends AbstractIrBytecodeTextTest { public class Unsigned {
@Test @Test
public void testAllFilesPresentInUnsigned() throws Exception { public void testAllFilesPresentInUnsigned() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/unsigned"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/forLoop/unsigned"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3124,7 +3124,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/hashCode") @TestMetadata("compiler/testData/codegen/bytecodeText/hashCode")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class HashCode extends AbstractIrBytecodeTextTest { public class HashCode {
@Test @Test
public void testAllFilesPresentInHashCode() throws Exception { public void testAllFilesPresentInHashCode() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/hashCode"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/hashCode"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3146,7 +3146,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/ieee754") @TestMetadata("compiler/testData/codegen/bytecodeText/ieee754")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Ieee754 extends AbstractIrBytecodeTextTest { public class Ieee754 {
@Test @Test
public void testAllFilesPresentInIeee754() throws Exception { public void testAllFilesPresentInIeee754() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/ieee754"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/ieee754"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3204,7 +3204,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/inline") @TestMetadata("compiler/testData/codegen/bytecodeText/inline")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Inline extends AbstractIrBytecodeTextTest { public class Inline {
@Test @Test
public void testAllFilesPresentInInline() throws Exception { public void testAllFilesPresentInInline() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/inline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/inline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3327,7 +3327,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/inline/property") @TestMetadata("compiler/testData/codegen/bytecodeText/inline/property")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Property extends AbstractIrBytecodeTextTest { public class Property {
@Test @Test
public void testAllFilesPresentInProperty() throws Exception { public void testAllFilesPresentInProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/inline/property"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/inline/property"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3344,7 +3344,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/inlineClasses") @TestMetadata("compiler/testData/codegen/bytecodeText/inlineClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineClasses extends AbstractIrBytecodeTextTest { public class InlineClasses {
@Test @Test
public void testAllFilesPresentInInlineClasses() throws Exception { public void testAllFilesPresentInInlineClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3756,7 +3756,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/innerClasses") @TestMetadata("compiler/testData/codegen/bytecodeText/innerClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InnerClasses extends AbstractIrBytecodeTextTest { public class InnerClasses {
@Test @Test
public void testAllFilesPresentInInnerClasses() throws Exception { public void testAllFilesPresentInInnerClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/innerClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/innerClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3772,7 +3772,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/interfaces") @TestMetadata("compiler/testData/codegen/bytecodeText/interfaces")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Interfaces extends AbstractIrBytecodeTextTest { public class Interfaces {
@Test @Test
@TestMetadata("addedInterfaceBridge.kt") @TestMetadata("addedInterfaceBridge.kt")
public void testAddedInterfaceBridge() throws Exception { public void testAddedInterfaceBridge() throws Exception {
@@ -3812,7 +3812,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/intrinsics") @TestMetadata("compiler/testData/codegen/bytecodeText/intrinsics")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Intrinsics extends AbstractIrBytecodeTextTest { public class Intrinsics {
@Test @Test
public void testAllFilesPresentInIntrinsics() throws Exception { public void testAllFilesPresentInIntrinsics() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/intrinsics"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/intrinsics"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3834,7 +3834,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/intrinsicsCompare") @TestMetadata("compiler/testData/codegen/bytecodeText/intrinsicsCompare")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class IntrinsicsCompare extends AbstractIrBytecodeTextTest { public class IntrinsicsCompare {
@Test @Test
public void testAllFilesPresentInIntrinsicsCompare() throws Exception { public void testAllFilesPresentInIntrinsicsCompare() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/intrinsicsCompare"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/intrinsicsCompare"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3904,7 +3904,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/intrinsicsTrim") @TestMetadata("compiler/testData/codegen/bytecodeText/intrinsicsTrim")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class IntrinsicsTrim extends AbstractIrBytecodeTextTest { public class IntrinsicsTrim {
@Test @Test
public void testAllFilesPresentInIntrinsicsTrim() throws Exception { public void testAllFilesPresentInIntrinsicsTrim() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/intrinsicsTrim"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/intrinsicsTrim"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3938,7 +3938,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/invokedynamic") @TestMetadata("compiler/testData/codegen/bytecodeText/invokedynamic")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Invokedynamic extends AbstractIrBytecodeTextTest { public class Invokedynamic {
@Test @Test
public void testAllFilesPresentInInvokedynamic() throws Exception { public void testAllFilesPresentInInvokedynamic() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/invokedynamic"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/invokedynamic"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3954,7 +3954,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/jvm8") @TestMetadata("compiler/testData/codegen/bytecodeText/jvm8")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Jvm8 extends AbstractIrBytecodeTextTest { public class Jvm8 {
@Test @Test
public void testAllFilesPresentInJvm8() throws Exception { public void testAllFilesPresentInJvm8() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3963,7 +3963,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/hashCode") @TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/hashCode")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class HashCode extends AbstractIrBytecodeTextTest { public class HashCode {
@Test @Test
public void testAllFilesPresentInHashCode() throws Exception { public void testAllFilesPresentInHashCode() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/hashCode"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/hashCode"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3985,7 +3985,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault") @TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class JvmDefault extends AbstractIrBytecodeTextTest { public class JvmDefault {
@Test @Test
public void testAllFilesPresentInJvmDefault() throws Exception { public void testAllFilesPresentInJvmDefault() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3994,7 +3994,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/allCompatibility") @TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/allCompatibility")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class AllCompatibility extends AbstractIrBytecodeTextTest { public class AllCompatibility {
@Test @Test
public void testAllFilesPresentInAllCompatibility() throws Exception { public void testAllFilesPresentInAllCompatibility() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/allCompatibility"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/allCompatibility"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4034,7 +4034,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/compatibility") @TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/compatibility")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Compatibility extends AbstractIrBytecodeTextTest { public class Compatibility {
@Test @Test
public void testAllFilesPresentInCompatibility() throws Exception { public void testAllFilesPresentInCompatibility() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/compatibility"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/compatibility"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4076,7 +4076,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/lazyCodegen") @TestMetadata("compiler/testData/codegen/bytecodeText/lazyCodegen")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LazyCodegen extends AbstractIrBytecodeTextTest { public class LazyCodegen {
@Test @Test
public void testAllFilesPresentInLazyCodegen() throws Exception { public void testAllFilesPresentInLazyCodegen() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/lazyCodegen"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/lazyCodegen"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4128,7 +4128,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/lineNumbers") @TestMetadata("compiler/testData/codegen/bytecodeText/lineNumbers")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LineNumbers extends AbstractIrBytecodeTextTest { public class LineNumbers {
@Test @Test
public void testAllFilesPresentInLineNumbers() throws Exception { public void testAllFilesPresentInLineNumbers() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/lineNumbers"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/lineNumbers"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4210,7 +4210,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/localInitializationLVT") @TestMetadata("compiler/testData/codegen/bytecodeText/localInitializationLVT")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LocalInitializationLVT extends AbstractIrBytecodeTextTest { public class LocalInitializationLVT {
@Test @Test
public void testAllFilesPresentInLocalInitializationLVT() throws Exception { public void testAllFilesPresentInLocalInitializationLVT() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/localInitializationLVT"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/localInitializationLVT"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4334,7 +4334,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/mangling") @TestMetadata("compiler/testData/codegen/bytecodeText/mangling")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Mangling extends AbstractIrBytecodeTextTest { public class Mangling {
@Test @Test
public void testAllFilesPresentInMangling() throws Exception { public void testAllFilesPresentInMangling() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/mangling"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/mangling"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4356,7 +4356,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/multifileClasses") @TestMetadata("compiler/testData/codegen/bytecodeText/multifileClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MultifileClasses extends AbstractIrBytecodeTextTest { public class MultifileClasses {
@Test @Test
public void testAllFilesPresentInMultifileClasses() throws Exception { public void testAllFilesPresentInMultifileClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/multifileClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/multifileClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4384,7 +4384,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/notNullAssertions") @TestMetadata("compiler/testData/codegen/bytecodeText/notNullAssertions")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NotNullAssertions extends AbstractIrBytecodeTextTest { public class NotNullAssertions {
@Test @Test
public void testAllFilesPresentInNotNullAssertions() throws Exception { public void testAllFilesPresentInNotNullAssertions() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/notNullAssertions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/notNullAssertions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4460,7 +4460,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/nullCheckOptimization") @TestMetadata("compiler/testData/codegen/bytecodeText/nullCheckOptimization")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NullCheckOptimization extends AbstractIrBytecodeTextTest { public class NullCheckOptimization {
@Test @Test
public void testAllFilesPresentInNullCheckOptimization() throws Exception { public void testAllFilesPresentInNullCheckOptimization() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/nullCheckOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/nullCheckOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4607,7 +4607,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/nullCheckOptimization/localLateinit") @TestMetadata("compiler/testData/codegen/bytecodeText/nullCheckOptimization/localLateinit")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LocalLateinit extends AbstractIrBytecodeTextTest { public class LocalLateinit {
@Test @Test
public void testAllFilesPresentInLocalLateinit() throws Exception { public void testAllFilesPresentInLocalLateinit() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/nullCheckOptimization/localLateinit"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/nullCheckOptimization/localLateinit"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4636,7 +4636,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/optimizedDelegatedProperties") @TestMetadata("compiler/testData/codegen/bytecodeText/optimizedDelegatedProperties")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class OptimizedDelegatedProperties extends AbstractIrBytecodeTextTest { public class OptimizedDelegatedProperties {
@Test @Test
public void testAllFilesPresentInOptimizedDelegatedProperties() throws Exception { public void testAllFilesPresentInOptimizedDelegatedProperties() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/optimizedDelegatedProperties"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/optimizedDelegatedProperties"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4670,7 +4670,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/parameterlessMain") @TestMetadata("compiler/testData/codegen/bytecodeText/parameterlessMain")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ParameterlessMain extends AbstractIrBytecodeTextTest { public class ParameterlessMain {
@Test @Test
public void testAllFilesPresentInParameterlessMain() throws Exception { public void testAllFilesPresentInParameterlessMain() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/parameterlessMain"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/parameterlessMain"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4722,7 +4722,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/properties") @TestMetadata("compiler/testData/codegen/bytecodeText/properties")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Properties extends AbstractIrBytecodeTextTest { public class Properties {
@Test @Test
public void testAllFilesPresentInProperties() throws Exception { public void testAllFilesPresentInProperties() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/properties"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/properties"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4743,7 +4743,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/properties/lateinit") @TestMetadata("compiler/testData/codegen/bytecodeText/properties/lateinit")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Lateinit extends AbstractIrBytecodeTextTest { public class Lateinit {
@Test @Test
public void testAllFilesPresentInLateinit() throws Exception { public void testAllFilesPresentInLateinit() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/properties/lateinit"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/properties/lateinit"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4766,7 +4766,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/ranges") @TestMetadata("compiler/testData/codegen/bytecodeText/ranges")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Ranges extends AbstractIrBytecodeTextTest { public class Ranges {
@Test @Test
public void testAllFilesPresentInRanges() throws Exception { public void testAllFilesPresentInRanges() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/ranges"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/ranges"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4848,7 +4848,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/sam") @TestMetadata("compiler/testData/codegen/bytecodeText/sam")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Sam extends AbstractIrBytecodeTextTest { public class Sam {
@Test @Test
public void testAllFilesPresentInSam() throws Exception { public void testAllFilesPresentInSam() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4894,7 +4894,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/statements") @TestMetadata("compiler/testData/codegen/bytecodeText/statements")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Statements extends AbstractIrBytecodeTextTest { public class Statements {
@Test @Test
public void testAllFilesPresentInStatements() throws Exception { public void testAllFilesPresentInStatements() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/statements"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/statements"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4952,7 +4952,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/staticFields") @TestMetadata("compiler/testData/codegen/bytecodeText/staticFields")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StaticFields extends AbstractIrBytecodeTextTest { public class StaticFields {
@Test @Test
public void testAllFilesPresentInStaticFields() throws Exception { public void testAllFilesPresentInStaticFields() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/staticFields"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/staticFields"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4974,7 +4974,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/storeStackBeforeInline") @TestMetadata("compiler/testData/codegen/bytecodeText/storeStackBeforeInline")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StoreStackBeforeInline extends AbstractIrBytecodeTextTest { public class StoreStackBeforeInline {
@Test @Test
public void testAllFilesPresentInStoreStackBeforeInline() throws Exception { public void testAllFilesPresentInStoreStackBeforeInline() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/storeStackBeforeInline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/storeStackBeforeInline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5014,7 +5014,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/stringOperations") @TestMetadata("compiler/testData/codegen/bytecodeText/stringOperations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StringOperations extends AbstractIrBytecodeTextTest { public class StringOperations {
@Test @Test
public void testAllFilesPresentInStringOperations() throws Exception { public void testAllFilesPresentInStringOperations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/stringOperations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/stringOperations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5216,7 +5216,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/toArray") @TestMetadata("compiler/testData/codegen/bytecodeText/toArray")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ToArray extends AbstractIrBytecodeTextTest { public class ToArray {
@Test @Test
public void testAllFilesPresentInToArray() throws Exception { public void testAllFilesPresentInToArray() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/toArray"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/toArray"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5232,7 +5232,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/unsignedTypes") @TestMetadata("compiler/testData/codegen/bytecodeText/unsignedTypes")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class UnsignedTypes extends AbstractIrBytecodeTextTest { public class UnsignedTypes {
@Test @Test
public void testAllFilesPresentInUnsignedTypes() throws Exception { public void testAllFilesPresentInUnsignedTypes() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/unsignedTypes"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/unsignedTypes"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5308,7 +5308,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/varargs") @TestMetadata("compiler/testData/codegen/bytecodeText/varargs")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Varargs extends AbstractIrBytecodeTextTest { public class Varargs {
@Test @Test
public void testAllFilesPresentInVarargs() throws Exception { public void testAllFilesPresentInVarargs() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/varargs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/varargs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5324,7 +5324,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/when") @TestMetadata("compiler/testData/codegen/bytecodeText/when")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class When extends AbstractIrBytecodeTextTest { public class When {
@Test @Test
public void testAllFilesPresentInWhen() throws Exception { public void testAllFilesPresentInWhen() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/when"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/when"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5484,7 +5484,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/whenEnumOptimization") @TestMetadata("compiler/testData/codegen/bytecodeText/whenEnumOptimization")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class WhenEnumOptimization extends AbstractIrBytecodeTextTest { public class WhenEnumOptimization {
@Test @Test
public void testAllFilesPresentInWhenEnumOptimization() throws Exception { public void testAllFilesPresentInWhenEnumOptimization() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/whenEnumOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/whenEnumOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5578,7 +5578,7 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/whenStringOptimization") @TestMetadata("compiler/testData/codegen/bytecodeText/whenStringOptimization")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class WhenStringOptimization extends AbstractIrBytecodeTextTest { public class WhenStringOptimization {
@Test @Test
public void testAllFilesPresentInWhenStringOptimization() throws Exception { public void testAllFilesPresentInWhenStringOptimization() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/whenStringOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeText/whenStringOptimization"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -28,7 +28,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class AnonymousObject extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class AnonymousObject {
@Test @Test
public void testAllFilesPresentInAnonymousObject() throws Exception { public void testAllFilesPresentInAnonymousObject() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -403,7 +403,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/enumWhen") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/enumWhen")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class EnumWhen extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class EnumWhen {
@Test @Test
public void testAllFilesPresentInEnumWhen() throws Exception { public void testAllFilesPresentInEnumWhen() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/enumWhen"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/enumWhen"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -437,7 +437,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ProperRecapturing extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class ProperRecapturing {
@Test @Test
public void testAllFilesPresentInProperRecapturing() throws Exception { public void testAllFilesPresentInProperRecapturing() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -483,7 +483,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ProperRecapturingInClass extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class ProperRecapturingInClass {
@Test @Test
public void testAllFilesPresentInProperRecapturingInClass() throws Exception { public void testAllFilesPresentInProperRecapturingInClass() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -565,7 +565,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/sam") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/sam")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Sam extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Sam {
@Test @Test
public void testAllFilesPresentInSam() throws Exception { public void testAllFilesPresentInSam() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -617,7 +617,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TwoCapturedReceivers extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class TwoCapturedReceivers {
@Test @Test
public void testAllFilesPresentInTwoCapturedReceivers() throws Exception { public void testAllFilesPresentInTwoCapturedReceivers() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -658,7 +658,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/argumentOrder") @TestMetadata("compiler/testData/codegen/boxInline/argumentOrder")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ArgumentOrder extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class ArgumentOrder {
@Test @Test
public void testAllFilesPresentInArgumentOrder() throws Exception { public void testAllFilesPresentInArgumentOrder() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/argumentOrder"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/argumentOrder"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -752,7 +752,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/arrayConvention") @TestMetadata("compiler/testData/codegen/boxInline/arrayConvention")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ArrayConvention extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class ArrayConvention {
@Test @Test
public void testAllFilesPresentInArrayConvention() throws Exception { public void testAllFilesPresentInArrayConvention() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/arrayConvention"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/arrayConvention"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -798,7 +798,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/assert") @TestMetadata("compiler/testData/codegen/boxInline/assert")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Assert extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Assert {
@Test @Test
public void testAllFilesPresentInAssert() throws Exception { public void testAllFilesPresentInAssert() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/assert"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/assert"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -880,7 +880,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/builders") @TestMetadata("compiler/testData/codegen/boxInline/builders")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Builders extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Builders {
@Test @Test
public void testAllFilesPresentInBuilders() throws Exception { public void testAllFilesPresentInBuilders() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/builders"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/builders"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -902,7 +902,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/bytecodePreprocessing") @TestMetadata("compiler/testData/codegen/boxInline/bytecodePreprocessing")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class BytecodePreprocessing extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class BytecodePreprocessing {
@Test @Test
public void testAllFilesPresentInBytecodePreprocessing() throws Exception { public void testAllFilesPresentInBytecodePreprocessing() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/bytecodePreprocessing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/bytecodePreprocessing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -918,7 +918,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/callableReference") @TestMetadata("compiler/testData/codegen/boxInline/callableReference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReference extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class CallableReference {
@Test @Test
@TestMetadata("adapted.kt") @TestMetadata("adapted.kt")
public void testAdapted() throws Exception { public void testAdapted() throws Exception {
@@ -1023,7 +1023,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/callableReference/bound") @TestMetadata("compiler/testData/codegen/boxInline/callableReference/bound")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Bound extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Bound {
@Test @Test
public void testAllFilesPresentInBound() throws Exception { public void testAllFilesPresentInBound() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/callableReference/bound"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/callableReference/bound"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1184,7 +1184,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/capture") @TestMetadata("compiler/testData/codegen/boxInline/capture")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Capture extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Capture {
@Test @Test
public void testAllFilesPresentInCapture() throws Exception { public void testAllFilesPresentInCapture() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/capture"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/capture"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1230,7 +1230,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/complex") @TestMetadata("compiler/testData/codegen/boxInline/complex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Complex extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Complex {
@Test @Test
public void testAllFilesPresentInComplex() throws Exception { public void testAllFilesPresentInComplex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1288,7 +1288,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/complexStack") @TestMetadata("compiler/testData/codegen/boxInline/complexStack")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ComplexStack extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class ComplexStack {
@Test @Test
public void testAllFilesPresentInComplexStack() throws Exception { public void testAllFilesPresentInComplexStack() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complexStack"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complexStack"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1352,7 +1352,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/contracts") @TestMetadata("compiler/testData/codegen/boxInline/contracts")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Contracts extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Contracts {
@Test @Test
public void testAllFilesPresentInContracts() throws Exception { public void testAllFilesPresentInContracts() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/contracts"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/contracts"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1452,7 +1452,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultValues extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class DefaultValues {
@Test @Test
@TestMetadata("33Parameters.kt") @TestMetadata("33Parameters.kt")
public void test33Parameters() throws Exception { public void test33Parameters() throws Exception {
@@ -1581,7 +1581,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LambdaInlining extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class LambdaInlining {
@Test @Test
public void testAllFilesPresentInLambdaInlining() throws Exception { public void testAllFilesPresentInLambdaInlining() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1782,7 +1782,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReferences extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class CallableReferences {
@Test @Test
public void testAllFilesPresentInCallableReferences() throws Exception { public void testAllFilesPresentInCallableReferences() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1925,7 +1925,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/maskElimination") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues/maskElimination")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MaskElimination extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class MaskElimination {
@Test @Test
@TestMetadata("32Parameters.kt") @TestMetadata("32Parameters.kt")
public void test32Parameters() throws Exception { public void test32Parameters() throws Exception {
@@ -1978,7 +1978,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/delegatedProperty") @TestMetadata("compiler/testData/codegen/boxInline/delegatedProperty")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DelegatedProperty extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class DelegatedProperty {
@Test @Test
public void testAllFilesPresentInDelegatedProperty() throws Exception { public void testAllFilesPresentInDelegatedProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/delegatedProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/delegatedProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2018,7 +2018,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/enclosingInfo") @TestMetadata("compiler/testData/codegen/boxInline/enclosingInfo")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class EnclosingInfo extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class EnclosingInfo {
@Test @Test
public void testAllFilesPresentInEnclosingInfo() throws Exception { public void testAllFilesPresentInEnclosingInfo() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enclosingInfo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enclosingInfo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2070,7 +2070,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/enum") @TestMetadata("compiler/testData/codegen/boxInline/enum")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Enum extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Enum {
@Test @Test
public void testAllFilesPresentInEnum() throws Exception { public void testAllFilesPresentInEnum() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enum"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enum"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2158,7 +2158,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/functionExpression") @TestMetadata("compiler/testData/codegen/boxInline/functionExpression")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FunctionExpression extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class FunctionExpression {
@Test @Test
public void testAllFilesPresentInFunctionExpression() throws Exception { public void testAllFilesPresentInFunctionExpression() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/functionExpression"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/functionExpression"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2174,7 +2174,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineClasses extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class InlineClasses {
@Test @Test
public void testAllFilesPresentInInlineClasses() throws Exception { public void testAllFilesPresentInInlineClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2231,7 +2231,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class UnboxGenericParameter extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class UnboxGenericParameter {
@Test @Test
public void testAllFilesPresentInUnboxGenericParameter() throws Exception { public void testAllFilesPresentInUnboxGenericParameter() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2240,7 +2240,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FunInterface extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class FunInterface {
@Test @Test
public void testAllFilesPresentInFunInterface() throws Exception { public void testAllFilesPresentInFunInterface() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2286,7 +2286,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Lambda extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Lambda {
@Test @Test
public void testAllFilesPresentInLambda() throws Exception { public void testAllFilesPresentInLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2332,7 +2332,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ObjectLiteral extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class ObjectLiteral {
@Test @Test
public void testAllFilesPresentInObjectLiteral() throws Exception { public void testAllFilesPresentInObjectLiteral() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2380,7 +2380,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/innerClasses") @TestMetadata("compiler/testData/codegen/boxInline/innerClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InnerClasses extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class InnerClasses {
@Test @Test
public void testAllFilesPresentInInnerClasses() throws Exception { public void testAllFilesPresentInInnerClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/innerClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/innerClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2408,7 +2408,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/jvmName") @TestMetadata("compiler/testData/codegen/boxInline/jvmName")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class JvmName extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class JvmName {
@Test @Test
public void testAllFilesPresentInJvmName() throws Exception { public void testAllFilesPresentInJvmName() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2424,7 +2424,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/jvmPackageName") @TestMetadata("compiler/testData/codegen/boxInline/jvmPackageName")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class JvmPackageName extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class JvmPackageName {
@Test @Test
public void testAllFilesPresentInJvmPackageName() throws Exception { public void testAllFilesPresentInJvmPackageName() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmPackageName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmPackageName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2440,7 +2440,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/lambdaClassClash") @TestMetadata("compiler/testData/codegen/boxInline/lambdaClassClash")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LambdaClassClash extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class LambdaClassClash {
@Test @Test
public void testAllFilesPresentInLambdaClassClash() throws Exception { public void testAllFilesPresentInLambdaClassClash() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaClassClash"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaClassClash"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2462,7 +2462,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/lambdaTransformation") @TestMetadata("compiler/testData/codegen/boxInline/lambdaTransformation")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LambdaTransformation extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class LambdaTransformation {
@Test @Test
public void testAllFilesPresentInLambdaTransformation() throws Exception { public void testAllFilesPresentInLambdaTransformation() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaTransformation"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaTransformation"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2508,7 +2508,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/localFunInLambda") @TestMetadata("compiler/testData/codegen/boxInline/localFunInLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LocalFunInLambda extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class LocalFunInLambda {
@Test @Test
public void testAllFilesPresentInLocalFunInLambda() throws Exception { public void testAllFilesPresentInLocalFunInLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/localFunInLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/localFunInLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2542,7 +2542,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multiModule") @TestMetadata("compiler/testData/codegen/boxInline/multiModule")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MultiModule extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class MultiModule {
@Test @Test
public void testAllFilesPresentInMultiModule() throws Exception { public void testAllFilesPresentInMultiModule() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2558,7 +2558,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multifileClasses") @TestMetadata("compiler/testData/codegen/boxInline/multifileClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MultifileClasses extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class MultifileClasses {
@Test @Test
public void testAllFilesPresentInMultifileClasses() throws Exception { public void testAllFilesPresentInMultifileClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multifileClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multifileClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2586,7 +2586,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multiplatform") @TestMetadata("compiler/testData/codegen/boxInline/multiplatform")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Multiplatform extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Multiplatform {
@Test @Test
public void testAllFilesPresentInMultiplatform() throws Exception { public void testAllFilesPresentInMultiplatform() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2595,7 +2595,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multiplatform/defaultArguments") @TestMetadata("compiler/testData/codegen/boxInline/multiplatform/defaultArguments")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultArguments extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class DefaultArguments {
@Test @Test
public void testAllFilesPresentInDefaultArguments() throws Exception { public void testAllFilesPresentInDefaultArguments() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform/defaultArguments"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform/defaultArguments"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2612,7 +2612,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/noInline") @TestMetadata("compiler/testData/codegen/boxInline/noInline")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NoInline extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class NoInline {
@Test @Test
public void testAllFilesPresentInNoInline() throws Exception { public void testAllFilesPresentInNoInline() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/noInline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/noInline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2664,7 +2664,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NonLocalReturns extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class NonLocalReturns {
@Test @Test
public void testAllFilesPresentInNonLocalReturns() throws Exception { public void testAllFilesPresentInNonLocalReturns() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2805,7 +2805,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Deparenthesize extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Deparenthesize {
@Test @Test
public void testAllFilesPresentInDeparenthesize() throws Exception { public void testAllFilesPresentInDeparenthesize() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2827,7 +2827,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TryFinally extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class TryFinally {
@Test @Test
public void testAllFilesPresentInTryFinally() throws Exception { public void testAllFilesPresentInTryFinally() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2914,7 +2914,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallSite extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class CallSite {
@Test @Test
public void testAllFilesPresentInCallSite() throws Exception { public void testAllFilesPresentInCallSite() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2960,7 +2960,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Chained extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Chained {
@Test @Test
public void testAllFilesPresentInChained() throws Exception { public void testAllFilesPresentInChained() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3018,7 +3018,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DeclSite extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class DeclSite {
@Test @Test
public void testAllFilesPresentInDeclSite() throws Exception { public void testAllFilesPresentInDeclSite() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3100,7 +3100,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ExceptionTable extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class ExceptionTable {
@Test @Test
public void testAllFilesPresentInExceptionTable() throws Exception { public void testAllFilesPresentInExceptionTable() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3236,7 +3236,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Variables extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Variables {
@Test @Test
public void testAllFilesPresentInVariables() throws Exception { public void testAllFilesPresentInVariables() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3254,7 +3254,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/optimizations") @TestMetadata("compiler/testData/codegen/boxInline/optimizations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Optimizations extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Optimizations {
@Test @Test
public void testAllFilesPresentInOptimizations() throws Exception { public void testAllFilesPresentInOptimizations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/optimizations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/optimizations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3270,7 +3270,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/private") @TestMetadata("compiler/testData/codegen/boxInline/private")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Private extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Private {
@Test @Test
@TestMetadata("accessorForConst.kt") @TestMetadata("accessorForConst.kt")
public void testAccessorForConst() throws Exception { public void testAccessorForConst() throws Exception {
@@ -3352,7 +3352,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/property") @TestMetadata("compiler/testData/codegen/boxInline/property")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Property extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Property {
@Test @Test
public void testAllFilesPresentInProperty() throws Exception { public void testAllFilesPresentInProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/property"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/property"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3440,7 +3440,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified") @TestMetadata("compiler/testData/codegen/boxInline/reified")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Reified extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Reified {
@Test @Test
public void testAllFilesPresentInReified() throws Exception { public void testAllFilesPresentInReified() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3599,7 +3599,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/checkCast") @TestMetadata("compiler/testData/codegen/boxInline/reified/checkCast")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CheckCast extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class CheckCast {
@Test @Test
public void testAllFilesPresentInCheckCast() throws Exception { public void testAllFilesPresentInCheckCast() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/checkCast"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/checkCast"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3669,7 +3669,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/defaultLambda") @TestMetadata("compiler/testData/codegen/boxInline/reified/defaultLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultLambda extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class DefaultLambda {
@Test @Test
public void testAllFilesPresentInDefaultLambda() throws Exception { public void testAllFilesPresentInDefaultLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3727,7 +3727,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/isCheck") @TestMetadata("compiler/testData/codegen/boxInline/reified/isCheck")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class IsCheck extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class IsCheck {
@Test @Test
public void testAllFilesPresentInIsCheck() throws Exception { public void testAllFilesPresentInIsCheck() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/isCheck"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/isCheck"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3756,7 +3756,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/signature") @TestMetadata("compiler/testData/codegen/boxInline/signature")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Signature extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Signature {
@Test @Test
public void testAllFilesPresentInSignature() throws Exception { public void testAllFilesPresentInSignature() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/signature"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/signature"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3820,7 +3820,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/simple") @TestMetadata("compiler/testData/codegen/boxInline/simple")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Simple extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Simple {
@Test @Test
public void testAllFilesPresentInSimple() throws Exception { public void testAllFilesPresentInSimple() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/simple"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/simple"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -3974,7 +3974,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap") @TestMetadata("compiler/testData/codegen/boxInline/smap")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Smap extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Smap {
@Test @Test
public void testAllFilesPresentInSmap() throws Exception { public void testAllFilesPresentInSmap() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4097,7 +4097,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/anonymous") @TestMetadata("compiler/testData/codegen/boxInline/smap/anonymous")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Anonymous extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Anonymous {
@Test @Test
public void testAllFilesPresentInAnonymous() throws Exception { public void testAllFilesPresentInAnonymous() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/anonymous"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/anonymous"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4167,7 +4167,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/defaultLambda") @TestMetadata("compiler/testData/codegen/boxInline/smap/defaultLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultLambda extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class DefaultLambda {
@Test @Test
public void testAllFilesPresentInDefaultLambda() throws Exception { public void testAllFilesPresentInDefaultLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4231,7 +4231,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/inlineOnly") @TestMetadata("compiler/testData/codegen/boxInline/smap/inlineOnly")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineOnly extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class InlineOnly {
@Test @Test
public void testAllFilesPresentInInlineOnly() throws Exception { public void testAllFilesPresentInInlineOnly() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/inlineOnly"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/inlineOnly"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4277,7 +4277,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/newsmap") @TestMetadata("compiler/testData/codegen/boxInline/smap/newsmap")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Newsmap extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Newsmap {
@Test @Test
public void testAllFilesPresentInNewsmap() throws Exception { public void testAllFilesPresentInNewsmap() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/newsmap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/newsmap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4311,7 +4311,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/resolve") @TestMetadata("compiler/testData/codegen/boxInline/smap/resolve")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Resolve extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Resolve {
@Test @Test
public void testAllFilesPresentInResolve() throws Exception { public void testAllFilesPresentInResolve() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/resolve"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/resolve"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4334,7 +4334,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/special") @TestMetadata("compiler/testData/codegen/boxInline/special")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Special extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Special {
@Test @Test
public void testAllFilesPresentInSpecial() throws Exception { public void testAllFilesPresentInSpecial() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/special"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/special"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4398,7 +4398,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/stackOnReturn") @TestMetadata("compiler/testData/codegen/boxInline/stackOnReturn")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StackOnReturn extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class StackOnReturn {
@Test @Test
public void testAllFilesPresentInStackOnReturn() throws Exception { public void testAllFilesPresentInStackOnReturn() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/stackOnReturn"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/stackOnReturn"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4504,7 +4504,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend") @TestMetadata("compiler/testData/codegen/boxInline/suspend")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Suspend extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Suspend {
@Test @Test
public void testAllFilesPresentInSuspend() throws Exception { public void testAllFilesPresentInSuspend() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4693,7 +4693,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/callableReference") @TestMetadata("compiler/testData/codegen/boxInline/suspend/callableReference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReference extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class CallableReference {
@Test @Test
public void testAllFilesPresentInCallableReference() throws Exception { public void testAllFilesPresentInCallableReference() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/callableReference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/callableReference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4733,7 +4733,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/defaultParameter") @TestMetadata("compiler/testData/codegen/boxInline/suspend/defaultParameter")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultParameter extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class DefaultParameter {
@Test @Test
public void testAllFilesPresentInDefaultParameter() throws Exception { public void testAllFilesPresentInDefaultParameter() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/defaultParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/defaultParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4767,7 +4767,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineClass") @TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineClass")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineClass extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class InlineClass {
@Test @Test
public void testAllFilesPresentInInlineClass() throws Exception { public void testAllFilesPresentInInlineClass() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4789,7 +4789,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline") @TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineUsedAsNoinline extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class InlineUsedAsNoinline {
@Test @Test
public void testAllFilesPresentInInlineUsedAsNoinline() throws Exception { public void testAllFilesPresentInInlineUsedAsNoinline() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4823,7 +4823,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/receiver") @TestMetadata("compiler/testData/codegen/boxInline/suspend/receiver")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Receiver extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Receiver {
@Test @Test
public void testAllFilesPresentInReceiver() throws Exception { public void testAllFilesPresentInReceiver() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/receiver"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/receiver"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -4881,7 +4881,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/stateMachine") @TestMetadata("compiler/testData/codegen/boxInline/suspend/stateMachine")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StateMachine extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class StateMachine {
@Test @Test
public void testAllFilesPresentInStateMachine() throws Exception { public void testAllFilesPresentInStateMachine() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/stateMachine"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/stateMachine"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5030,7 +5030,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors") @TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class SyntheticAccessors extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class SyntheticAccessors {
@Test @Test
public void testAllFilesPresentInSyntheticAccessors() throws Exception { public void testAllFilesPresentInSyntheticAccessors() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5087,7 +5087,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda") @TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class WithinInlineLambda extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class WithinInlineLambda {
@Test @Test
public void testAllFilesPresentInWithinInlineLambda() throws Exception { public void testAllFilesPresentInWithinInlineLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5152,7 +5152,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/trait") @TestMetadata("compiler/testData/codegen/boxInline/trait")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Trait extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Trait {
@Test @Test
public void testAllFilesPresentInTrait() throws Exception { public void testAllFilesPresentInTrait() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/trait"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/trait"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5168,7 +5168,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/tryCatchFinally") @TestMetadata("compiler/testData/codegen/boxInline/tryCatchFinally")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TryCatchFinally extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class TryCatchFinally {
@Test @Test
public void testAllFilesPresentInTryCatchFinally() throws Exception { public void testAllFilesPresentInTryCatchFinally() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/tryCatchFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/tryCatchFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -5202,7 +5202,7 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/varargs") @TestMetadata("compiler/testData/codegen/boxInline/varargs")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Varargs extends AbstractIrCompileKotlinAgainstInlineKotlinTest { public class Varargs {
@Test @Test
public void testAllFilesPresentInVarargs() throws Exception { public void testAllFilesPresentInVarargs() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/varargs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/varargs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -28,7 +28,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class AnonymousObject extends AbstractJvmIrAgainstOldBoxInlineTest { public class AnonymousObject {
@Test @Test
public void testAllFilesPresentInAnonymousObject() throws Exception { public void testAllFilesPresentInAnonymousObject() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -403,7 +403,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/enumWhen") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/enumWhen")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class EnumWhen extends AbstractJvmIrAgainstOldBoxInlineTest { public class EnumWhen {
@Test @Test
public void testAllFilesPresentInEnumWhen() throws Exception { public void testAllFilesPresentInEnumWhen() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/enumWhen"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/enumWhen"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -437,7 +437,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ProperRecapturing extends AbstractJvmIrAgainstOldBoxInlineTest { public class ProperRecapturing {
@Test @Test
public void testAllFilesPresentInProperRecapturing() throws Exception { public void testAllFilesPresentInProperRecapturing() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -483,7 +483,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ProperRecapturingInClass extends AbstractJvmIrAgainstOldBoxInlineTest { public class ProperRecapturingInClass {
@Test @Test
public void testAllFilesPresentInProperRecapturingInClass() throws Exception { public void testAllFilesPresentInProperRecapturingInClass() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -565,7 +565,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/sam") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/sam")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Sam extends AbstractJvmIrAgainstOldBoxInlineTest { public class Sam {
@Test @Test
public void testAllFilesPresentInSam() throws Exception { public void testAllFilesPresentInSam() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -617,7 +617,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TwoCapturedReceivers extends AbstractJvmIrAgainstOldBoxInlineTest { public class TwoCapturedReceivers {
@Test @Test
public void testAllFilesPresentInTwoCapturedReceivers() throws Exception { public void testAllFilesPresentInTwoCapturedReceivers() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -658,7 +658,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/argumentOrder") @TestMetadata("compiler/testData/codegen/boxInline/argumentOrder")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ArgumentOrder extends AbstractJvmIrAgainstOldBoxInlineTest { public class ArgumentOrder {
@Test @Test
public void testAllFilesPresentInArgumentOrder() throws Exception { public void testAllFilesPresentInArgumentOrder() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/argumentOrder"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/argumentOrder"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -752,7 +752,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/arrayConvention") @TestMetadata("compiler/testData/codegen/boxInline/arrayConvention")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ArrayConvention extends AbstractJvmIrAgainstOldBoxInlineTest { public class ArrayConvention {
@Test @Test
public void testAllFilesPresentInArrayConvention() throws Exception { public void testAllFilesPresentInArrayConvention() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/arrayConvention"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/arrayConvention"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -798,7 +798,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/assert") @TestMetadata("compiler/testData/codegen/boxInline/assert")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Assert extends AbstractJvmIrAgainstOldBoxInlineTest { public class Assert {
@Test @Test
public void testAllFilesPresentInAssert() throws Exception { public void testAllFilesPresentInAssert() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/assert"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/assert"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -880,7 +880,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/builders") @TestMetadata("compiler/testData/codegen/boxInline/builders")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Builders extends AbstractJvmIrAgainstOldBoxInlineTest { public class Builders {
@Test @Test
public void testAllFilesPresentInBuilders() throws Exception { public void testAllFilesPresentInBuilders() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/builders"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/builders"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -902,7 +902,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/bytecodePreprocessing") @TestMetadata("compiler/testData/codegen/boxInline/bytecodePreprocessing")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class BytecodePreprocessing extends AbstractJvmIrAgainstOldBoxInlineTest { public class BytecodePreprocessing {
@Test @Test
public void testAllFilesPresentInBytecodePreprocessing() throws Exception { public void testAllFilesPresentInBytecodePreprocessing() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/bytecodePreprocessing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/bytecodePreprocessing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -918,7 +918,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/callableReference") @TestMetadata("compiler/testData/codegen/boxInline/callableReference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReference extends AbstractJvmIrAgainstOldBoxInlineTest { public class CallableReference {
@Test @Test
@TestMetadata("adapted.kt") @TestMetadata("adapted.kt")
public void testAdapted() throws Exception { public void testAdapted() throws Exception {
@@ -1023,7 +1023,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/callableReference/bound") @TestMetadata("compiler/testData/codegen/boxInline/callableReference/bound")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Bound extends AbstractJvmIrAgainstOldBoxInlineTest { public class Bound {
@Test @Test
public void testAllFilesPresentInBound() throws Exception { public void testAllFilesPresentInBound() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/callableReference/bound"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/callableReference/bound"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -1184,7 +1184,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/capture") @TestMetadata("compiler/testData/codegen/boxInline/capture")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Capture extends AbstractJvmIrAgainstOldBoxInlineTest { public class Capture {
@Test @Test
public void testAllFilesPresentInCapture() throws Exception { public void testAllFilesPresentInCapture() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/capture"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/capture"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -1230,7 +1230,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/complex") @TestMetadata("compiler/testData/codegen/boxInline/complex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Complex extends AbstractJvmIrAgainstOldBoxInlineTest { public class Complex {
@Test @Test
public void testAllFilesPresentInComplex() throws Exception { public void testAllFilesPresentInComplex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -1288,7 +1288,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/complexStack") @TestMetadata("compiler/testData/codegen/boxInline/complexStack")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ComplexStack extends AbstractJvmIrAgainstOldBoxInlineTest { public class ComplexStack {
@Test @Test
public void testAllFilesPresentInComplexStack() throws Exception { public void testAllFilesPresentInComplexStack() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complexStack"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complexStack"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -1352,7 +1352,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/contracts") @TestMetadata("compiler/testData/codegen/boxInline/contracts")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Contracts extends AbstractJvmIrAgainstOldBoxInlineTest { public class Contracts {
@Test @Test
public void testAllFilesPresentInContracts() throws Exception { public void testAllFilesPresentInContracts() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/contracts"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/contracts"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -1452,7 +1452,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultValues extends AbstractJvmIrAgainstOldBoxInlineTest { public class DefaultValues {
@Test @Test
@TestMetadata("33Parameters.kt") @TestMetadata("33Parameters.kt")
public void test33Parameters() throws Exception { public void test33Parameters() throws Exception {
@@ -1581,7 +1581,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LambdaInlining extends AbstractJvmIrAgainstOldBoxInlineTest { public class LambdaInlining {
@Test @Test
public void testAllFilesPresentInLambdaInlining() throws Exception { public void testAllFilesPresentInLambdaInlining() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -1782,7 +1782,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReferences extends AbstractJvmIrAgainstOldBoxInlineTest { public class CallableReferences {
@Test @Test
public void testAllFilesPresentInCallableReferences() throws Exception { public void testAllFilesPresentInCallableReferences() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -1925,7 +1925,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/maskElimination") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues/maskElimination")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MaskElimination extends AbstractJvmIrAgainstOldBoxInlineTest { public class MaskElimination {
@Test @Test
@TestMetadata("32Parameters.kt") @TestMetadata("32Parameters.kt")
public void test32Parameters() throws Exception { public void test32Parameters() throws Exception {
@@ -1978,7 +1978,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/delegatedProperty") @TestMetadata("compiler/testData/codegen/boxInline/delegatedProperty")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DelegatedProperty extends AbstractJvmIrAgainstOldBoxInlineTest { public class DelegatedProperty {
@Test @Test
public void testAllFilesPresentInDelegatedProperty() throws Exception { public void testAllFilesPresentInDelegatedProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/delegatedProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/delegatedProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2018,7 +2018,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/enclosingInfo") @TestMetadata("compiler/testData/codegen/boxInline/enclosingInfo")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class EnclosingInfo extends AbstractJvmIrAgainstOldBoxInlineTest { public class EnclosingInfo {
@Test @Test
public void testAllFilesPresentInEnclosingInfo() throws Exception { public void testAllFilesPresentInEnclosingInfo() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enclosingInfo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enclosingInfo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2070,7 +2070,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/enum") @TestMetadata("compiler/testData/codegen/boxInline/enum")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Enum extends AbstractJvmIrAgainstOldBoxInlineTest { public class Enum {
@Test @Test
public void testAllFilesPresentInEnum() throws Exception { public void testAllFilesPresentInEnum() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enum"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enum"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2158,7 +2158,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/functionExpression") @TestMetadata("compiler/testData/codegen/boxInline/functionExpression")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FunctionExpression extends AbstractJvmIrAgainstOldBoxInlineTest { public class FunctionExpression {
@Test @Test
public void testAllFilesPresentInFunctionExpression() throws Exception { public void testAllFilesPresentInFunctionExpression() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/functionExpression"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/functionExpression"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2174,7 +2174,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineClasses extends AbstractJvmIrAgainstOldBoxInlineTest { public class InlineClasses {
@Test @Test
public void testAllFilesPresentInInlineClasses() throws Exception { public void testAllFilesPresentInInlineClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2231,7 +2231,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class UnboxGenericParameter extends AbstractJvmIrAgainstOldBoxInlineTest { public class UnboxGenericParameter {
@Test @Test
public void testAllFilesPresentInUnboxGenericParameter() throws Exception { public void testAllFilesPresentInUnboxGenericParameter() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2240,7 +2240,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FunInterface extends AbstractJvmIrAgainstOldBoxInlineTest { public class FunInterface {
@Test @Test
public void testAllFilesPresentInFunInterface() throws Exception { public void testAllFilesPresentInFunInterface() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2286,7 +2286,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Lambda extends AbstractJvmIrAgainstOldBoxInlineTest { public class Lambda {
@Test @Test
public void testAllFilesPresentInLambda() throws Exception { public void testAllFilesPresentInLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2332,7 +2332,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ObjectLiteral extends AbstractJvmIrAgainstOldBoxInlineTest { public class ObjectLiteral {
@Test @Test
public void testAllFilesPresentInObjectLiteral() throws Exception { public void testAllFilesPresentInObjectLiteral() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2380,7 +2380,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/innerClasses") @TestMetadata("compiler/testData/codegen/boxInline/innerClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InnerClasses extends AbstractJvmIrAgainstOldBoxInlineTest { public class InnerClasses {
@Test @Test
public void testAllFilesPresentInInnerClasses() throws Exception { public void testAllFilesPresentInInnerClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/innerClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/innerClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2408,7 +2408,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/jvmName") @TestMetadata("compiler/testData/codegen/boxInline/jvmName")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class JvmName extends AbstractJvmIrAgainstOldBoxInlineTest { public class JvmName {
@Test @Test
public void testAllFilesPresentInJvmName() throws Exception { public void testAllFilesPresentInJvmName() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2424,7 +2424,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/jvmPackageName") @TestMetadata("compiler/testData/codegen/boxInline/jvmPackageName")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class JvmPackageName extends AbstractJvmIrAgainstOldBoxInlineTest { public class JvmPackageName {
@Test @Test
public void testAllFilesPresentInJvmPackageName() throws Exception { public void testAllFilesPresentInJvmPackageName() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmPackageName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmPackageName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2440,7 +2440,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/lambdaClassClash") @TestMetadata("compiler/testData/codegen/boxInline/lambdaClassClash")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LambdaClassClash extends AbstractJvmIrAgainstOldBoxInlineTest { public class LambdaClassClash {
@Test @Test
public void testAllFilesPresentInLambdaClassClash() throws Exception { public void testAllFilesPresentInLambdaClassClash() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaClassClash"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaClassClash"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2462,7 +2462,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/lambdaTransformation") @TestMetadata("compiler/testData/codegen/boxInline/lambdaTransformation")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LambdaTransformation extends AbstractJvmIrAgainstOldBoxInlineTest { public class LambdaTransformation {
@Test @Test
public void testAllFilesPresentInLambdaTransformation() throws Exception { public void testAllFilesPresentInLambdaTransformation() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaTransformation"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaTransformation"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2508,7 +2508,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/localFunInLambda") @TestMetadata("compiler/testData/codegen/boxInline/localFunInLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LocalFunInLambda extends AbstractJvmIrAgainstOldBoxInlineTest { public class LocalFunInLambda {
@Test @Test
public void testAllFilesPresentInLocalFunInLambda() throws Exception { public void testAllFilesPresentInLocalFunInLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/localFunInLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/localFunInLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2542,7 +2542,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multiModule") @TestMetadata("compiler/testData/codegen/boxInline/multiModule")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MultiModule extends AbstractJvmIrAgainstOldBoxInlineTest { public class MultiModule {
@Test @Test
public void testAllFilesPresentInMultiModule() throws Exception { public void testAllFilesPresentInMultiModule() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2558,7 +2558,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multifileClasses") @TestMetadata("compiler/testData/codegen/boxInline/multifileClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MultifileClasses extends AbstractJvmIrAgainstOldBoxInlineTest { public class MultifileClasses {
@Test @Test
public void testAllFilesPresentInMultifileClasses() throws Exception { public void testAllFilesPresentInMultifileClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multifileClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multifileClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2586,7 +2586,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multiplatform") @TestMetadata("compiler/testData/codegen/boxInline/multiplatform")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Multiplatform extends AbstractJvmIrAgainstOldBoxInlineTest { public class Multiplatform {
@Test @Test
public void testAllFilesPresentInMultiplatform() throws Exception { public void testAllFilesPresentInMultiplatform() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2595,7 +2595,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multiplatform/defaultArguments") @TestMetadata("compiler/testData/codegen/boxInline/multiplatform/defaultArguments")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultArguments extends AbstractJvmIrAgainstOldBoxInlineTest { public class DefaultArguments {
@Test @Test
public void testAllFilesPresentInDefaultArguments() throws Exception { public void testAllFilesPresentInDefaultArguments() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform/defaultArguments"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform/defaultArguments"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2612,7 +2612,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/noInline") @TestMetadata("compiler/testData/codegen/boxInline/noInline")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NoInline extends AbstractJvmIrAgainstOldBoxInlineTest { public class NoInline {
@Test @Test
public void testAllFilesPresentInNoInline() throws Exception { public void testAllFilesPresentInNoInline() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/noInline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/noInline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2664,7 +2664,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NonLocalReturns extends AbstractJvmIrAgainstOldBoxInlineTest { public class NonLocalReturns {
@Test @Test
public void testAllFilesPresentInNonLocalReturns() throws Exception { public void testAllFilesPresentInNonLocalReturns() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2805,7 +2805,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Deparenthesize extends AbstractJvmIrAgainstOldBoxInlineTest { public class Deparenthesize {
@Test @Test
public void testAllFilesPresentInDeparenthesize() throws Exception { public void testAllFilesPresentInDeparenthesize() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2827,7 +2827,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TryFinally extends AbstractJvmIrAgainstOldBoxInlineTest { public class TryFinally {
@Test @Test
public void testAllFilesPresentInTryFinally() throws Exception { public void testAllFilesPresentInTryFinally() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2914,7 +2914,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallSite extends AbstractJvmIrAgainstOldBoxInlineTest { public class CallSite {
@Test @Test
public void testAllFilesPresentInCallSite() throws Exception { public void testAllFilesPresentInCallSite() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -2960,7 +2960,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Chained extends AbstractJvmIrAgainstOldBoxInlineTest { public class Chained {
@Test @Test
public void testAllFilesPresentInChained() throws Exception { public void testAllFilesPresentInChained() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -3018,7 +3018,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DeclSite extends AbstractJvmIrAgainstOldBoxInlineTest { public class DeclSite {
@Test @Test
public void testAllFilesPresentInDeclSite() throws Exception { public void testAllFilesPresentInDeclSite() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -3100,7 +3100,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ExceptionTable extends AbstractJvmIrAgainstOldBoxInlineTest { public class ExceptionTable {
@Test @Test
public void testAllFilesPresentInExceptionTable() throws Exception { public void testAllFilesPresentInExceptionTable() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -3236,7 +3236,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Variables extends AbstractJvmIrAgainstOldBoxInlineTest { public class Variables {
@Test @Test
public void testAllFilesPresentInVariables() throws Exception { public void testAllFilesPresentInVariables() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -3254,7 +3254,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/optimizations") @TestMetadata("compiler/testData/codegen/boxInline/optimizations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Optimizations extends AbstractJvmIrAgainstOldBoxInlineTest { public class Optimizations {
@Test @Test
public void testAllFilesPresentInOptimizations() throws Exception { public void testAllFilesPresentInOptimizations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/optimizations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/optimizations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -3270,7 +3270,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/private") @TestMetadata("compiler/testData/codegen/boxInline/private")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Private extends AbstractJvmIrAgainstOldBoxInlineTest { public class Private {
@Test @Test
@TestMetadata("accessorForConst.kt") @TestMetadata("accessorForConst.kt")
public void testAccessorForConst() throws Exception { public void testAccessorForConst() throws Exception {
@@ -3352,7 +3352,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/property") @TestMetadata("compiler/testData/codegen/boxInline/property")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Property extends AbstractJvmIrAgainstOldBoxInlineTest { public class Property {
@Test @Test
public void testAllFilesPresentInProperty() throws Exception { public void testAllFilesPresentInProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/property"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/property"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -3440,7 +3440,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified") @TestMetadata("compiler/testData/codegen/boxInline/reified")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Reified extends AbstractJvmIrAgainstOldBoxInlineTest { public class Reified {
@Test @Test
public void testAllFilesPresentInReified() throws Exception { public void testAllFilesPresentInReified() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -3599,7 +3599,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/checkCast") @TestMetadata("compiler/testData/codegen/boxInline/reified/checkCast")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CheckCast extends AbstractJvmIrAgainstOldBoxInlineTest { public class CheckCast {
@Test @Test
public void testAllFilesPresentInCheckCast() throws Exception { public void testAllFilesPresentInCheckCast() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/checkCast"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/checkCast"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -3669,7 +3669,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/defaultLambda") @TestMetadata("compiler/testData/codegen/boxInline/reified/defaultLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultLambda extends AbstractJvmIrAgainstOldBoxInlineTest { public class DefaultLambda {
@Test @Test
public void testAllFilesPresentInDefaultLambda() throws Exception { public void testAllFilesPresentInDefaultLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -3727,7 +3727,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/isCheck") @TestMetadata("compiler/testData/codegen/boxInline/reified/isCheck")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class IsCheck extends AbstractJvmIrAgainstOldBoxInlineTest { public class IsCheck {
@Test @Test
public void testAllFilesPresentInIsCheck() throws Exception { public void testAllFilesPresentInIsCheck() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/isCheck"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/isCheck"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -3756,7 +3756,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/signature") @TestMetadata("compiler/testData/codegen/boxInline/signature")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Signature extends AbstractJvmIrAgainstOldBoxInlineTest { public class Signature {
@Test @Test
public void testAllFilesPresentInSignature() throws Exception { public void testAllFilesPresentInSignature() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/signature"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/signature"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -3820,7 +3820,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/simple") @TestMetadata("compiler/testData/codegen/boxInline/simple")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Simple extends AbstractJvmIrAgainstOldBoxInlineTest { public class Simple {
@Test @Test
public void testAllFilesPresentInSimple() throws Exception { public void testAllFilesPresentInSimple() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/simple"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/simple"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -3974,7 +3974,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap") @TestMetadata("compiler/testData/codegen/boxInline/smap")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Smap extends AbstractJvmIrAgainstOldBoxInlineTest { public class Smap {
@Test @Test
public void testAllFilesPresentInSmap() throws Exception { public void testAllFilesPresentInSmap() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -4097,7 +4097,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/anonymous") @TestMetadata("compiler/testData/codegen/boxInline/smap/anonymous")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Anonymous extends AbstractJvmIrAgainstOldBoxInlineTest { public class Anonymous {
@Test @Test
public void testAllFilesPresentInAnonymous() throws Exception { public void testAllFilesPresentInAnonymous() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/anonymous"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/anonymous"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -4167,7 +4167,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/defaultLambda") @TestMetadata("compiler/testData/codegen/boxInline/smap/defaultLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultLambda extends AbstractJvmIrAgainstOldBoxInlineTest { public class DefaultLambda {
@Test @Test
public void testAllFilesPresentInDefaultLambda() throws Exception { public void testAllFilesPresentInDefaultLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -4231,7 +4231,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/inlineOnly") @TestMetadata("compiler/testData/codegen/boxInline/smap/inlineOnly")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineOnly extends AbstractJvmIrAgainstOldBoxInlineTest { public class InlineOnly {
@Test @Test
public void testAllFilesPresentInInlineOnly() throws Exception { public void testAllFilesPresentInInlineOnly() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/inlineOnly"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/inlineOnly"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -4277,7 +4277,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/newsmap") @TestMetadata("compiler/testData/codegen/boxInline/smap/newsmap")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Newsmap extends AbstractJvmIrAgainstOldBoxInlineTest { public class Newsmap {
@Test @Test
public void testAllFilesPresentInNewsmap() throws Exception { public void testAllFilesPresentInNewsmap() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/newsmap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/newsmap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -4311,7 +4311,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/resolve") @TestMetadata("compiler/testData/codegen/boxInline/smap/resolve")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Resolve extends AbstractJvmIrAgainstOldBoxInlineTest { public class Resolve {
@Test @Test
public void testAllFilesPresentInResolve() throws Exception { public void testAllFilesPresentInResolve() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/resolve"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/resolve"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -4334,7 +4334,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/special") @TestMetadata("compiler/testData/codegen/boxInline/special")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Special extends AbstractJvmIrAgainstOldBoxInlineTest { public class Special {
@Test @Test
public void testAllFilesPresentInSpecial() throws Exception { public void testAllFilesPresentInSpecial() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/special"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/special"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -4398,7 +4398,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/stackOnReturn") @TestMetadata("compiler/testData/codegen/boxInline/stackOnReturn")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StackOnReturn extends AbstractJvmIrAgainstOldBoxInlineTest { public class StackOnReturn {
@Test @Test
public void testAllFilesPresentInStackOnReturn() throws Exception { public void testAllFilesPresentInStackOnReturn() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/stackOnReturn"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/stackOnReturn"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -4504,7 +4504,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend") @TestMetadata("compiler/testData/codegen/boxInline/suspend")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Suspend extends AbstractJvmIrAgainstOldBoxInlineTest { public class Suspend {
@Test @Test
public void testAllFilesPresentInSuspend() throws Exception { public void testAllFilesPresentInSuspend() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -4693,7 +4693,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/callableReference") @TestMetadata("compiler/testData/codegen/boxInline/suspend/callableReference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReference extends AbstractJvmIrAgainstOldBoxInlineTest { public class CallableReference {
@Test @Test
public void testAllFilesPresentInCallableReference() throws Exception { public void testAllFilesPresentInCallableReference() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/callableReference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/callableReference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -4733,7 +4733,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/defaultParameter") @TestMetadata("compiler/testData/codegen/boxInline/suspend/defaultParameter")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultParameter extends AbstractJvmIrAgainstOldBoxInlineTest { public class DefaultParameter {
@Test @Test
public void testAllFilesPresentInDefaultParameter() throws Exception { public void testAllFilesPresentInDefaultParameter() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/defaultParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/defaultParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -4767,7 +4767,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineClass") @TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineClass")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineClass extends AbstractJvmIrAgainstOldBoxInlineTest { public class InlineClass {
@Test @Test
public void testAllFilesPresentInInlineClass() throws Exception { public void testAllFilesPresentInInlineClass() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -4789,7 +4789,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline") @TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineUsedAsNoinline extends AbstractJvmIrAgainstOldBoxInlineTest { public class InlineUsedAsNoinline {
@Test @Test
public void testAllFilesPresentInInlineUsedAsNoinline() throws Exception { public void testAllFilesPresentInInlineUsedAsNoinline() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -4823,7 +4823,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/receiver") @TestMetadata("compiler/testData/codegen/boxInline/suspend/receiver")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Receiver extends AbstractJvmIrAgainstOldBoxInlineTest { public class Receiver {
@Test @Test
public void testAllFilesPresentInReceiver() throws Exception { public void testAllFilesPresentInReceiver() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/receiver"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/receiver"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -4881,7 +4881,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/stateMachine") @TestMetadata("compiler/testData/codegen/boxInline/suspend/stateMachine")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StateMachine extends AbstractJvmIrAgainstOldBoxInlineTest { public class StateMachine {
@Test @Test
public void testAllFilesPresentInStateMachine() throws Exception { public void testAllFilesPresentInStateMachine() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/stateMachine"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/stateMachine"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -5030,7 +5030,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors") @TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class SyntheticAccessors extends AbstractJvmIrAgainstOldBoxInlineTest { public class SyntheticAccessors {
@Test @Test
public void testAllFilesPresentInSyntheticAccessors() throws Exception { public void testAllFilesPresentInSyntheticAccessors() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -5087,7 +5087,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda") @TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class WithinInlineLambda extends AbstractJvmIrAgainstOldBoxInlineTest { public class WithinInlineLambda {
@Test @Test
public void testAllFilesPresentInWithinInlineLambda() throws Exception { public void testAllFilesPresentInWithinInlineLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -5152,7 +5152,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/trait") @TestMetadata("compiler/testData/codegen/boxInline/trait")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Trait extends AbstractJvmIrAgainstOldBoxInlineTest { public class Trait {
@Test @Test
public void testAllFilesPresentInTrait() throws Exception { public void testAllFilesPresentInTrait() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/trait"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/trait"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -5168,7 +5168,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/tryCatchFinally") @TestMetadata("compiler/testData/codegen/boxInline/tryCatchFinally")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TryCatchFinally extends AbstractJvmIrAgainstOldBoxInlineTest { public class TryCatchFinally {
@Test @Test
public void testAllFilesPresentInTryCatchFinally() throws Exception { public void testAllFilesPresentInTryCatchFinally() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/tryCatchFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/tryCatchFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -5202,7 +5202,7 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/varargs") @TestMetadata("compiler/testData/codegen/boxInline/varargs")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Varargs extends AbstractJvmIrAgainstOldBoxInlineTest { public class Varargs {
@Test @Test
public void testAllFilesPresentInVarargs() throws Exception { public void testAllFilesPresentInVarargs() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/varargs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/varargs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -580,7 +580,7 @@ public class JvmIrAgainstOldBoxTestGenerated extends AbstractJvmIrAgainstOldBoxT
@Nested @Nested
@TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/fir") @TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/fir")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Fir extends AbstractJvmIrAgainstOldBoxTest { public class Fir {
@Test @Test
public void testAllFilesPresentInFir() throws Exception { public void testAllFilesPresentInFir() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/fir"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/fir"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -620,7 +620,7 @@ public class JvmIrAgainstOldBoxTestGenerated extends AbstractJvmIrAgainstOldBoxT
@Nested @Nested
@TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8") @TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Jvm8 extends AbstractJvmIrAgainstOldBoxTest { public class Jvm8 {
@Test @Test
public void testAllFilesPresentInJvm8() throws Exception { public void testAllFilesPresentInJvm8() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -629,7 +629,7 @@ public class JvmIrAgainstOldBoxTestGenerated extends AbstractJvmIrAgainstOldBoxT
@Nested @Nested
@TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults") @TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Defaults extends AbstractJvmIrAgainstOldBoxTest { public class Defaults {
@Test @Test
public void testAllFilesPresentInDefaults() throws Exception { public void testAllFilesPresentInDefaults() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -674,7 +674,7 @@ public class JvmIrAgainstOldBoxTestGenerated extends AbstractJvmIrAgainstOldBoxT
@Nested @Nested
@TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/allCompatibility") @TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/allCompatibility")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class AllCompatibility extends AbstractJvmIrAgainstOldBoxTest { public class AllCompatibility {
@Test @Test
public void testAllFilesPresentInAllCompatibility() throws Exception { public void testAllFilesPresentInAllCompatibility() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/allCompatibility"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/allCompatibility"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -725,7 +725,7 @@ public class JvmIrAgainstOldBoxTestGenerated extends AbstractJvmIrAgainstOldBoxT
@Nested @Nested
@TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/allCompatibility/delegationBy") @TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/allCompatibility/delegationBy")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DelegationBy extends AbstractJvmIrAgainstOldBoxTest { public class DelegationBy {
@Test @Test
public void testAllFilesPresentInDelegationBy() throws Exception { public void testAllFilesPresentInDelegationBy() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/allCompatibility/delegationBy"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/allCompatibility/delegationBy"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -748,7 +748,7 @@ public class JvmIrAgainstOldBoxTestGenerated extends AbstractJvmIrAgainstOldBoxT
@Nested @Nested
@TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/interop") @TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/interop")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Interop extends AbstractJvmIrAgainstOldBoxTest { public class Interop {
@Test @Test
public void testAllFilesPresentInInterop() throws Exception { public void testAllFilesPresentInInterop() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/interop"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/interop"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -801,7 +801,7 @@ public class JvmIrAgainstOldBoxTestGenerated extends AbstractJvmIrAgainstOldBoxT
@Nested @Nested
@TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/jvm8against6") @TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/jvm8against6")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Jvm8against6 extends AbstractJvmIrAgainstOldBoxTest { public class Jvm8against6 {
@Test @Test
public void testAllFilesPresentInJvm8against6() throws Exception { public void testAllFilesPresentInJvm8against6() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/jvm8against6"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/jvm8against6"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -846,7 +846,7 @@ public class JvmIrAgainstOldBoxTestGenerated extends AbstractJvmIrAgainstOldBoxT
@Nested @Nested
@TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/jvm8against6/delegation") @TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/jvm8against6/delegation")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Delegation extends AbstractJvmIrAgainstOldBoxTest { public class Delegation {
@Test @Test
public void testAllFilesPresentInDelegation() throws Exception { public void testAllFilesPresentInDelegation() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/jvm8against6/delegation"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/jvm8against6/delegation"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -876,7 +876,7 @@ public class JvmIrAgainstOldBoxTestGenerated extends AbstractJvmIrAgainstOldBoxT
@Nested @Nested
@TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/typeAnnotations") @TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/typeAnnotations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TypeAnnotations extends AbstractJvmIrAgainstOldBoxTest { public class TypeAnnotations {
@Test @Test
public void testAllFilesPresentInTypeAnnotations() throws Exception { public void testAllFilesPresentInTypeAnnotations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/typeAnnotations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/typeAnnotations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD, true);
@@ -28,7 +28,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class AnonymousObject extends AbstractJvmOldAgainstIrBoxInlineTest { public class AnonymousObject {
@Test @Test
public void testAllFilesPresentInAnonymousObject() throws Exception { public void testAllFilesPresentInAnonymousObject() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -403,7 +403,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/enumWhen") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/enumWhen")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class EnumWhen extends AbstractJvmOldAgainstIrBoxInlineTest { public class EnumWhen {
@Test @Test
public void testAllFilesPresentInEnumWhen() throws Exception { public void testAllFilesPresentInEnumWhen() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/enumWhen"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/enumWhen"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -437,7 +437,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ProperRecapturing extends AbstractJvmOldAgainstIrBoxInlineTest { public class ProperRecapturing {
@Test @Test
public void testAllFilesPresentInProperRecapturing() throws Exception { public void testAllFilesPresentInProperRecapturing() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -483,7 +483,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ProperRecapturingInClass extends AbstractJvmOldAgainstIrBoxInlineTest { public class ProperRecapturingInClass {
@Test @Test
public void testAllFilesPresentInProperRecapturingInClass() throws Exception { public void testAllFilesPresentInProperRecapturingInClass() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -565,7 +565,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/sam") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/sam")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Sam extends AbstractJvmOldAgainstIrBoxInlineTest { public class Sam {
@Test @Test
public void testAllFilesPresentInSam() throws Exception { public void testAllFilesPresentInSam() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -617,7 +617,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers") @TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TwoCapturedReceivers extends AbstractJvmOldAgainstIrBoxInlineTest { public class TwoCapturedReceivers {
@Test @Test
public void testAllFilesPresentInTwoCapturedReceivers() throws Exception { public void testAllFilesPresentInTwoCapturedReceivers() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -658,7 +658,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/argumentOrder") @TestMetadata("compiler/testData/codegen/boxInline/argumentOrder")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ArgumentOrder extends AbstractJvmOldAgainstIrBoxInlineTest { public class ArgumentOrder {
@Test @Test
public void testAllFilesPresentInArgumentOrder() throws Exception { public void testAllFilesPresentInArgumentOrder() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/argumentOrder"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/argumentOrder"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -752,7 +752,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/arrayConvention") @TestMetadata("compiler/testData/codegen/boxInline/arrayConvention")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ArrayConvention extends AbstractJvmOldAgainstIrBoxInlineTest { public class ArrayConvention {
@Test @Test
public void testAllFilesPresentInArrayConvention() throws Exception { public void testAllFilesPresentInArrayConvention() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/arrayConvention"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/arrayConvention"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -798,7 +798,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/assert") @TestMetadata("compiler/testData/codegen/boxInline/assert")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Assert extends AbstractJvmOldAgainstIrBoxInlineTest { public class Assert {
@Test @Test
public void testAllFilesPresentInAssert() throws Exception { public void testAllFilesPresentInAssert() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/assert"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/assert"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -880,7 +880,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/builders") @TestMetadata("compiler/testData/codegen/boxInline/builders")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Builders extends AbstractJvmOldAgainstIrBoxInlineTest { public class Builders {
@Test @Test
public void testAllFilesPresentInBuilders() throws Exception { public void testAllFilesPresentInBuilders() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/builders"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/builders"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -902,7 +902,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/bytecodePreprocessing") @TestMetadata("compiler/testData/codegen/boxInline/bytecodePreprocessing")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class BytecodePreprocessing extends AbstractJvmOldAgainstIrBoxInlineTest { public class BytecodePreprocessing {
@Test @Test
public void testAllFilesPresentInBytecodePreprocessing() throws Exception { public void testAllFilesPresentInBytecodePreprocessing() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/bytecodePreprocessing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/bytecodePreprocessing"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -918,7 +918,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/callableReference") @TestMetadata("compiler/testData/codegen/boxInline/callableReference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReference extends AbstractJvmOldAgainstIrBoxInlineTest { public class CallableReference {
@Test @Test
@TestMetadata("adapted.kt") @TestMetadata("adapted.kt")
public void testAdapted() throws Exception { public void testAdapted() throws Exception {
@@ -1023,7 +1023,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/callableReference/bound") @TestMetadata("compiler/testData/codegen/boxInline/callableReference/bound")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Bound extends AbstractJvmOldAgainstIrBoxInlineTest { public class Bound {
@Test @Test
public void testAllFilesPresentInBound() throws Exception { public void testAllFilesPresentInBound() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/callableReference/bound"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/callableReference/bound"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -1184,7 +1184,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/capture") @TestMetadata("compiler/testData/codegen/boxInline/capture")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Capture extends AbstractJvmOldAgainstIrBoxInlineTest { public class Capture {
@Test @Test
public void testAllFilesPresentInCapture() throws Exception { public void testAllFilesPresentInCapture() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/capture"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/capture"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -1230,7 +1230,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/complex") @TestMetadata("compiler/testData/codegen/boxInline/complex")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Complex extends AbstractJvmOldAgainstIrBoxInlineTest { public class Complex {
@Test @Test
public void testAllFilesPresentInComplex() throws Exception { public void testAllFilesPresentInComplex() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complex"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -1288,7 +1288,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/complexStack") @TestMetadata("compiler/testData/codegen/boxInline/complexStack")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ComplexStack extends AbstractJvmOldAgainstIrBoxInlineTest { public class ComplexStack {
@Test @Test
public void testAllFilesPresentInComplexStack() throws Exception { public void testAllFilesPresentInComplexStack() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complexStack"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/complexStack"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -1352,7 +1352,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/contracts") @TestMetadata("compiler/testData/codegen/boxInline/contracts")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Contracts extends AbstractJvmOldAgainstIrBoxInlineTest { public class Contracts {
@Test @Test
public void testAllFilesPresentInContracts() throws Exception { public void testAllFilesPresentInContracts() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/contracts"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/contracts"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -1452,7 +1452,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultValues extends AbstractJvmOldAgainstIrBoxInlineTest { public class DefaultValues {
@Test @Test
@TestMetadata("33Parameters.kt") @TestMetadata("33Parameters.kt")
public void test33Parameters() throws Exception { public void test33Parameters() throws Exception {
@@ -1581,7 +1581,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LambdaInlining extends AbstractJvmOldAgainstIrBoxInlineTest { public class LambdaInlining {
@Test @Test
public void testAllFilesPresentInLambdaInlining() throws Exception { public void testAllFilesPresentInLambdaInlining() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -1782,7 +1782,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReferences extends AbstractJvmOldAgainstIrBoxInlineTest { public class CallableReferences {
@Test @Test
public void testAllFilesPresentInCallableReferences() throws Exception { public void testAllFilesPresentInCallableReferences() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -1925,7 +1925,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/maskElimination") @TestMetadata("compiler/testData/codegen/boxInline/defaultValues/maskElimination")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MaskElimination extends AbstractJvmOldAgainstIrBoxInlineTest { public class MaskElimination {
@Test @Test
@TestMetadata("32Parameters.kt") @TestMetadata("32Parameters.kt")
public void test32Parameters() throws Exception { public void test32Parameters() throws Exception {
@@ -1978,7 +1978,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/delegatedProperty") @TestMetadata("compiler/testData/codegen/boxInline/delegatedProperty")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DelegatedProperty extends AbstractJvmOldAgainstIrBoxInlineTest { public class DelegatedProperty {
@Test @Test
public void testAllFilesPresentInDelegatedProperty() throws Exception { public void testAllFilesPresentInDelegatedProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/delegatedProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/delegatedProperty"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2018,7 +2018,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/enclosingInfo") @TestMetadata("compiler/testData/codegen/boxInline/enclosingInfo")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class EnclosingInfo extends AbstractJvmOldAgainstIrBoxInlineTest { public class EnclosingInfo {
@Test @Test
public void testAllFilesPresentInEnclosingInfo() throws Exception { public void testAllFilesPresentInEnclosingInfo() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enclosingInfo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enclosingInfo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2070,7 +2070,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/enum") @TestMetadata("compiler/testData/codegen/boxInline/enum")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Enum extends AbstractJvmOldAgainstIrBoxInlineTest { public class Enum {
@Test @Test
public void testAllFilesPresentInEnum() throws Exception { public void testAllFilesPresentInEnum() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enum"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/enum"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2158,7 +2158,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/functionExpression") @TestMetadata("compiler/testData/codegen/boxInline/functionExpression")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FunctionExpression extends AbstractJvmOldAgainstIrBoxInlineTest { public class FunctionExpression {
@Test @Test
public void testAllFilesPresentInFunctionExpression() throws Exception { public void testAllFilesPresentInFunctionExpression() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/functionExpression"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/functionExpression"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2174,7 +2174,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineClasses extends AbstractJvmOldAgainstIrBoxInlineTest { public class InlineClasses {
@Test @Test
public void testAllFilesPresentInInlineClasses() throws Exception { public void testAllFilesPresentInInlineClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2231,7 +2231,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class UnboxGenericParameter extends AbstractJvmOldAgainstIrBoxInlineTest { public class UnboxGenericParameter {
@Test @Test
public void testAllFilesPresentInUnboxGenericParameter() throws Exception { public void testAllFilesPresentInUnboxGenericParameter() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2240,7 +2240,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FunInterface extends AbstractJvmOldAgainstIrBoxInlineTest { public class FunInterface {
@Test @Test
public void testAllFilesPresentInFunInterface() throws Exception { public void testAllFilesPresentInFunInterface() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2286,7 +2286,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Lambda extends AbstractJvmOldAgainstIrBoxInlineTest { public class Lambda {
@Test @Test
public void testAllFilesPresentInLambda() throws Exception { public void testAllFilesPresentInLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2332,7 +2332,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral") @TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ObjectLiteral extends AbstractJvmOldAgainstIrBoxInlineTest { public class ObjectLiteral {
@Test @Test
public void testAllFilesPresentInObjectLiteral() throws Exception { public void testAllFilesPresentInObjectLiteral() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2380,7 +2380,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/innerClasses") @TestMetadata("compiler/testData/codegen/boxInline/innerClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InnerClasses extends AbstractJvmOldAgainstIrBoxInlineTest { public class InnerClasses {
@Test @Test
public void testAllFilesPresentInInnerClasses() throws Exception { public void testAllFilesPresentInInnerClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/innerClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/innerClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2408,7 +2408,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/jvmName") @TestMetadata("compiler/testData/codegen/boxInline/jvmName")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class JvmName extends AbstractJvmOldAgainstIrBoxInlineTest { public class JvmName {
@Test @Test
public void testAllFilesPresentInJvmName() throws Exception { public void testAllFilesPresentInJvmName() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2424,7 +2424,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/jvmPackageName") @TestMetadata("compiler/testData/codegen/boxInline/jvmPackageName")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class JvmPackageName extends AbstractJvmOldAgainstIrBoxInlineTest { public class JvmPackageName {
@Test @Test
public void testAllFilesPresentInJvmPackageName() throws Exception { public void testAllFilesPresentInJvmPackageName() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmPackageName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/jvmPackageName"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2440,7 +2440,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/lambdaClassClash") @TestMetadata("compiler/testData/codegen/boxInline/lambdaClassClash")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LambdaClassClash extends AbstractJvmOldAgainstIrBoxInlineTest { public class LambdaClassClash {
@Test @Test
public void testAllFilesPresentInLambdaClassClash() throws Exception { public void testAllFilesPresentInLambdaClassClash() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaClassClash"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaClassClash"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2462,7 +2462,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/lambdaTransformation") @TestMetadata("compiler/testData/codegen/boxInline/lambdaTransformation")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LambdaTransformation extends AbstractJvmOldAgainstIrBoxInlineTest { public class LambdaTransformation {
@Test @Test
public void testAllFilesPresentInLambdaTransformation() throws Exception { public void testAllFilesPresentInLambdaTransformation() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaTransformation"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/lambdaTransformation"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2508,7 +2508,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/localFunInLambda") @TestMetadata("compiler/testData/codegen/boxInline/localFunInLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class LocalFunInLambda extends AbstractJvmOldAgainstIrBoxInlineTest { public class LocalFunInLambda {
@Test @Test
public void testAllFilesPresentInLocalFunInLambda() throws Exception { public void testAllFilesPresentInLocalFunInLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/localFunInLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/localFunInLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2542,7 +2542,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multiModule") @TestMetadata("compiler/testData/codegen/boxInline/multiModule")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MultiModule extends AbstractJvmOldAgainstIrBoxInlineTest { public class MultiModule {
@Test @Test
public void testAllFilesPresentInMultiModule() throws Exception { public void testAllFilesPresentInMultiModule() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2558,7 +2558,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multifileClasses") @TestMetadata("compiler/testData/codegen/boxInline/multifileClasses")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class MultifileClasses extends AbstractJvmOldAgainstIrBoxInlineTest { public class MultifileClasses {
@Test @Test
public void testAllFilesPresentInMultifileClasses() throws Exception { public void testAllFilesPresentInMultifileClasses() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multifileClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multifileClasses"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2586,7 +2586,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multiplatform") @TestMetadata("compiler/testData/codegen/boxInline/multiplatform")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Multiplatform extends AbstractJvmOldAgainstIrBoxInlineTest { public class Multiplatform {
@Test @Test
public void testAllFilesPresentInMultiplatform() throws Exception { public void testAllFilesPresentInMultiplatform() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2595,7 +2595,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/multiplatform/defaultArguments") @TestMetadata("compiler/testData/codegen/boxInline/multiplatform/defaultArguments")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultArguments extends AbstractJvmOldAgainstIrBoxInlineTest { public class DefaultArguments {
@Test @Test
public void testAllFilesPresentInDefaultArguments() throws Exception { public void testAllFilesPresentInDefaultArguments() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform/defaultArguments"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/multiplatform/defaultArguments"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2612,7 +2612,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/noInline") @TestMetadata("compiler/testData/codegen/boxInline/noInline")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NoInline extends AbstractJvmOldAgainstIrBoxInlineTest { public class NoInline {
@Test @Test
public void testAllFilesPresentInNoInline() throws Exception { public void testAllFilesPresentInNoInline() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/noInline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/noInline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2664,7 +2664,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NonLocalReturns extends AbstractJvmOldAgainstIrBoxInlineTest { public class NonLocalReturns {
@Test @Test
public void testAllFilesPresentInNonLocalReturns() throws Exception { public void testAllFilesPresentInNonLocalReturns() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2805,7 +2805,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Deparenthesize extends AbstractJvmOldAgainstIrBoxInlineTest { public class Deparenthesize {
@Test @Test
public void testAllFilesPresentInDeparenthesize() throws Exception { public void testAllFilesPresentInDeparenthesize() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2827,7 +2827,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TryFinally extends AbstractJvmOldAgainstIrBoxInlineTest { public class TryFinally {
@Test @Test
public void testAllFilesPresentInTryFinally() throws Exception { public void testAllFilesPresentInTryFinally() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2914,7 +2914,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallSite extends AbstractJvmOldAgainstIrBoxInlineTest { public class CallSite {
@Test @Test
public void testAllFilesPresentInCallSite() throws Exception { public void testAllFilesPresentInCallSite() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -2960,7 +2960,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Chained extends AbstractJvmOldAgainstIrBoxInlineTest { public class Chained {
@Test @Test
public void testAllFilesPresentInChained() throws Exception { public void testAllFilesPresentInChained() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -3018,7 +3018,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DeclSite extends AbstractJvmOldAgainstIrBoxInlineTest { public class DeclSite {
@Test @Test
public void testAllFilesPresentInDeclSite() throws Exception { public void testAllFilesPresentInDeclSite() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -3100,7 +3100,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ExceptionTable extends AbstractJvmOldAgainstIrBoxInlineTest { public class ExceptionTable {
@Test @Test
public void testAllFilesPresentInExceptionTable() throws Exception { public void testAllFilesPresentInExceptionTable() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -3236,7 +3236,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables") @TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Variables extends AbstractJvmOldAgainstIrBoxInlineTest { public class Variables {
@Test @Test
public void testAllFilesPresentInVariables() throws Exception { public void testAllFilesPresentInVariables() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -3254,7 +3254,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/optimizations") @TestMetadata("compiler/testData/codegen/boxInline/optimizations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Optimizations extends AbstractJvmOldAgainstIrBoxInlineTest { public class Optimizations {
@Test @Test
public void testAllFilesPresentInOptimizations() throws Exception { public void testAllFilesPresentInOptimizations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/optimizations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/optimizations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -3270,7 +3270,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/private") @TestMetadata("compiler/testData/codegen/boxInline/private")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Private extends AbstractJvmOldAgainstIrBoxInlineTest { public class Private {
@Test @Test
@TestMetadata("accessorForConst.kt") @TestMetadata("accessorForConst.kt")
public void testAccessorForConst() throws Exception { public void testAccessorForConst() throws Exception {
@@ -3352,7 +3352,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/property") @TestMetadata("compiler/testData/codegen/boxInline/property")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Property extends AbstractJvmOldAgainstIrBoxInlineTest { public class Property {
@Test @Test
public void testAllFilesPresentInProperty() throws Exception { public void testAllFilesPresentInProperty() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/property"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/property"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -3440,7 +3440,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified") @TestMetadata("compiler/testData/codegen/boxInline/reified")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Reified extends AbstractJvmOldAgainstIrBoxInlineTest { public class Reified {
@Test @Test
public void testAllFilesPresentInReified() throws Exception { public void testAllFilesPresentInReified() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -3599,7 +3599,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/checkCast") @TestMetadata("compiler/testData/codegen/boxInline/reified/checkCast")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CheckCast extends AbstractJvmOldAgainstIrBoxInlineTest { public class CheckCast {
@Test @Test
public void testAllFilesPresentInCheckCast() throws Exception { public void testAllFilesPresentInCheckCast() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/checkCast"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/checkCast"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -3669,7 +3669,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/defaultLambda") @TestMetadata("compiler/testData/codegen/boxInline/reified/defaultLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultLambda extends AbstractJvmOldAgainstIrBoxInlineTest { public class DefaultLambda {
@Test @Test
public void testAllFilesPresentInDefaultLambda() throws Exception { public void testAllFilesPresentInDefaultLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -3727,7 +3727,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/isCheck") @TestMetadata("compiler/testData/codegen/boxInline/reified/isCheck")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class IsCheck extends AbstractJvmOldAgainstIrBoxInlineTest { public class IsCheck {
@Test @Test
public void testAllFilesPresentInIsCheck() throws Exception { public void testAllFilesPresentInIsCheck() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/isCheck"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/reified/isCheck"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -3756,7 +3756,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/signature") @TestMetadata("compiler/testData/codegen/boxInline/signature")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Signature extends AbstractJvmOldAgainstIrBoxInlineTest { public class Signature {
@Test @Test
public void testAllFilesPresentInSignature() throws Exception { public void testAllFilesPresentInSignature() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/signature"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/signature"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -3820,7 +3820,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/simple") @TestMetadata("compiler/testData/codegen/boxInline/simple")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Simple extends AbstractJvmOldAgainstIrBoxInlineTest { public class Simple {
@Test @Test
public void testAllFilesPresentInSimple() throws Exception { public void testAllFilesPresentInSimple() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/simple"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/simple"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -3974,7 +3974,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap") @TestMetadata("compiler/testData/codegen/boxInline/smap")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Smap extends AbstractJvmOldAgainstIrBoxInlineTest { public class Smap {
@Test @Test
public void testAllFilesPresentInSmap() throws Exception { public void testAllFilesPresentInSmap() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -4097,7 +4097,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/anonymous") @TestMetadata("compiler/testData/codegen/boxInline/smap/anonymous")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Anonymous extends AbstractJvmOldAgainstIrBoxInlineTest { public class Anonymous {
@Test @Test
public void testAllFilesPresentInAnonymous() throws Exception { public void testAllFilesPresentInAnonymous() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/anonymous"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/anonymous"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -4167,7 +4167,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/defaultLambda") @TestMetadata("compiler/testData/codegen/boxInline/smap/defaultLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultLambda extends AbstractJvmOldAgainstIrBoxInlineTest { public class DefaultLambda {
@Test @Test
public void testAllFilesPresentInDefaultLambda() throws Exception { public void testAllFilesPresentInDefaultLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/defaultLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -4231,7 +4231,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/inlineOnly") @TestMetadata("compiler/testData/codegen/boxInline/smap/inlineOnly")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineOnly extends AbstractJvmOldAgainstIrBoxInlineTest { public class InlineOnly {
@Test @Test
public void testAllFilesPresentInInlineOnly() throws Exception { public void testAllFilesPresentInInlineOnly() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/inlineOnly"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/inlineOnly"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -4277,7 +4277,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/newsmap") @TestMetadata("compiler/testData/codegen/boxInline/smap/newsmap")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Newsmap extends AbstractJvmOldAgainstIrBoxInlineTest { public class Newsmap {
@Test @Test
public void testAllFilesPresentInNewsmap() throws Exception { public void testAllFilesPresentInNewsmap() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/newsmap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/newsmap"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -4311,7 +4311,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/resolve") @TestMetadata("compiler/testData/codegen/boxInline/smap/resolve")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Resolve extends AbstractJvmOldAgainstIrBoxInlineTest { public class Resolve {
@Test @Test
public void testAllFilesPresentInResolve() throws Exception { public void testAllFilesPresentInResolve() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/resolve"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/smap/resolve"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -4334,7 +4334,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/special") @TestMetadata("compiler/testData/codegen/boxInline/special")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Special extends AbstractJvmOldAgainstIrBoxInlineTest { public class Special {
@Test @Test
public void testAllFilesPresentInSpecial() throws Exception { public void testAllFilesPresentInSpecial() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/special"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/special"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -4398,7 +4398,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/stackOnReturn") @TestMetadata("compiler/testData/codegen/boxInline/stackOnReturn")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StackOnReturn extends AbstractJvmOldAgainstIrBoxInlineTest { public class StackOnReturn {
@Test @Test
public void testAllFilesPresentInStackOnReturn() throws Exception { public void testAllFilesPresentInStackOnReturn() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/stackOnReturn"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/stackOnReturn"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -4504,7 +4504,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend") @TestMetadata("compiler/testData/codegen/boxInline/suspend")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Suspend extends AbstractJvmOldAgainstIrBoxInlineTest { public class Suspend {
@Test @Test
public void testAllFilesPresentInSuspend() throws Exception { public void testAllFilesPresentInSuspend() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -4693,7 +4693,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/callableReference") @TestMetadata("compiler/testData/codegen/boxInline/suspend/callableReference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReference extends AbstractJvmOldAgainstIrBoxInlineTest { public class CallableReference {
@Test @Test
public void testAllFilesPresentInCallableReference() throws Exception { public void testAllFilesPresentInCallableReference() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/callableReference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/callableReference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -4733,7 +4733,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/defaultParameter") @TestMetadata("compiler/testData/codegen/boxInline/suspend/defaultParameter")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DefaultParameter extends AbstractJvmOldAgainstIrBoxInlineTest { public class DefaultParameter {
@Test @Test
public void testAllFilesPresentInDefaultParameter() throws Exception { public void testAllFilesPresentInDefaultParameter() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/defaultParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/defaultParameter"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -4767,7 +4767,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineClass") @TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineClass")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineClass extends AbstractJvmOldAgainstIrBoxInlineTest { public class InlineClass {
@Test @Test
public void testAllFilesPresentInInlineClass() throws Exception { public void testAllFilesPresentInInlineClass() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineClass"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -4789,7 +4789,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline") @TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class InlineUsedAsNoinline extends AbstractJvmOldAgainstIrBoxInlineTest { public class InlineUsedAsNoinline {
@Test @Test
public void testAllFilesPresentInInlineUsedAsNoinline() throws Exception { public void testAllFilesPresentInInlineUsedAsNoinline() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -4823,7 +4823,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/receiver") @TestMetadata("compiler/testData/codegen/boxInline/suspend/receiver")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Receiver extends AbstractJvmOldAgainstIrBoxInlineTest { public class Receiver {
@Test @Test
public void testAllFilesPresentInReceiver() throws Exception { public void testAllFilesPresentInReceiver() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/receiver"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/receiver"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -4881,7 +4881,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/stateMachine") @TestMetadata("compiler/testData/codegen/boxInline/suspend/stateMachine")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class StateMachine extends AbstractJvmOldAgainstIrBoxInlineTest { public class StateMachine {
@Test @Test
public void testAllFilesPresentInStateMachine() throws Exception { public void testAllFilesPresentInStateMachine() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/stateMachine"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/suspend/stateMachine"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -5030,7 +5030,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors") @TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class SyntheticAccessors extends AbstractJvmOldAgainstIrBoxInlineTest { public class SyntheticAccessors {
@Test @Test
public void testAllFilesPresentInSyntheticAccessors() throws Exception { public void testAllFilesPresentInSyntheticAccessors() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -5087,7 +5087,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda") @TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class WithinInlineLambda extends AbstractJvmOldAgainstIrBoxInlineTest { public class WithinInlineLambda {
@Test @Test
public void testAllFilesPresentInWithinInlineLambda() throws Exception { public void testAllFilesPresentInWithinInlineLambda() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -5152,7 +5152,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/trait") @TestMetadata("compiler/testData/codegen/boxInline/trait")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Trait extends AbstractJvmOldAgainstIrBoxInlineTest { public class Trait {
@Test @Test
public void testAllFilesPresentInTrait() throws Exception { public void testAllFilesPresentInTrait() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/trait"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/trait"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -5168,7 +5168,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/tryCatchFinally") @TestMetadata("compiler/testData/codegen/boxInline/tryCatchFinally")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TryCatchFinally extends AbstractJvmOldAgainstIrBoxInlineTest { public class TryCatchFinally {
@Test @Test
public void testAllFilesPresentInTryCatchFinally() throws Exception { public void testAllFilesPresentInTryCatchFinally() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/tryCatchFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/tryCatchFinally"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -5202,7 +5202,7 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
@Nested @Nested
@TestMetadata("compiler/testData/codegen/boxInline/varargs") @TestMetadata("compiler/testData/codegen/boxInline/varargs")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Varargs extends AbstractJvmOldAgainstIrBoxInlineTest { public class Varargs {
@Test @Test
public void testAllFilesPresentInVarargs() throws Exception { public void testAllFilesPresentInVarargs() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/varargs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/varargs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -580,7 +580,7 @@ public class JvmOldAgainstIrBoxTestGenerated extends AbstractJvmOldAgainstIrBoxT
@Nested @Nested
@TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/fir") @TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/fir")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Fir extends AbstractJvmOldAgainstIrBoxTest { public class Fir {
@Test @Test
public void testAllFilesPresentInFir() throws Exception { public void testAllFilesPresentInFir() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/fir"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/fir"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -620,7 +620,7 @@ public class JvmOldAgainstIrBoxTestGenerated extends AbstractJvmOldAgainstIrBoxT
@Nested @Nested
@TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8") @TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Jvm8 extends AbstractJvmOldAgainstIrBoxTest { public class Jvm8 {
@Test @Test
public void testAllFilesPresentInJvm8() throws Exception { public void testAllFilesPresentInJvm8() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -629,7 +629,7 @@ public class JvmOldAgainstIrBoxTestGenerated extends AbstractJvmOldAgainstIrBoxT
@Nested @Nested
@TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults") @TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Defaults extends AbstractJvmOldAgainstIrBoxTest { public class Defaults {
@Test @Test
public void testAllFilesPresentInDefaults() throws Exception { public void testAllFilesPresentInDefaults() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -674,7 +674,7 @@ public class JvmOldAgainstIrBoxTestGenerated extends AbstractJvmOldAgainstIrBoxT
@Nested @Nested
@TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/allCompatibility") @TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/allCompatibility")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class AllCompatibility extends AbstractJvmOldAgainstIrBoxTest { public class AllCompatibility {
@Test @Test
public void testAllFilesPresentInAllCompatibility() throws Exception { public void testAllFilesPresentInAllCompatibility() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/allCompatibility"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/allCompatibility"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -725,7 +725,7 @@ public class JvmOldAgainstIrBoxTestGenerated extends AbstractJvmOldAgainstIrBoxT
@Nested @Nested
@TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/allCompatibility/delegationBy") @TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/allCompatibility/delegationBy")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class DelegationBy extends AbstractJvmOldAgainstIrBoxTest { public class DelegationBy {
@Test @Test
public void testAllFilesPresentInDelegationBy() throws Exception { public void testAllFilesPresentInDelegationBy() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/allCompatibility/delegationBy"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/allCompatibility/delegationBy"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -748,7 +748,7 @@ public class JvmOldAgainstIrBoxTestGenerated extends AbstractJvmOldAgainstIrBoxT
@Nested @Nested
@TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/interop") @TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/interop")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Interop extends AbstractJvmOldAgainstIrBoxTest { public class Interop {
@Test @Test
public void testAllFilesPresentInInterop() throws Exception { public void testAllFilesPresentInInterop() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/interop"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/defaults/interop"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -801,7 +801,7 @@ public class JvmOldAgainstIrBoxTestGenerated extends AbstractJvmOldAgainstIrBoxT
@Nested @Nested
@TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/jvm8against6") @TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/jvm8against6")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Jvm8against6 extends AbstractJvmOldAgainstIrBoxTest { public class Jvm8against6 {
@Test @Test
public void testAllFilesPresentInJvm8against6() throws Exception { public void testAllFilesPresentInJvm8against6() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/jvm8against6"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/jvm8against6"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -846,7 +846,7 @@ public class JvmOldAgainstIrBoxTestGenerated extends AbstractJvmOldAgainstIrBoxT
@Nested @Nested
@TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/jvm8against6/delegation") @TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/jvm8against6/delegation")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Delegation extends AbstractJvmOldAgainstIrBoxTest { public class Delegation {
@Test @Test
public void testAllFilesPresentInDelegation() throws Exception { public void testAllFilesPresentInDelegation() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/jvm8against6/delegation"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/jvm8/jvm8against6/delegation"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -876,7 +876,7 @@ public class JvmOldAgainstIrBoxTestGenerated extends AbstractJvmOldAgainstIrBoxT
@Nested @Nested
@TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/typeAnnotations") @TestMetadata("compiler/testData/codegen/box/compileKotlinAgainstKotlin/typeAnnotations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class TypeAnnotations extends AbstractJvmOldAgainstIrBoxTest { public class TypeAnnotations {
@Test @Test
public void testAllFilesPresentInTypeAnnotations() throws Exception { public void testAllFilesPresentInTypeAnnotations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/typeAnnotations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/compileKotlinAgainstKotlin/typeAnnotations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR, true);
@@ -28,7 +28,7 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/classes") @TestMetadata("compiler/testData/ir/irText/classes")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Classes extends AbstractIrTextTest { public class Classes {
@Test @Test
@TestMetadata("abstractMembers.kt") @TestMetadata("abstractMembers.kt")
public void testAbstractMembers() throws Exception { public void testAbstractMembers() throws Exception {
@@ -326,7 +326,7 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/declarations") @TestMetadata("compiler/testData/ir/irText/declarations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Declarations extends AbstractIrTextTest { public class Declarations {
@Test @Test
public void testAllFilesPresentInDeclarations() throws Exception { public void testAllFilesPresentInDeclarations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/declarations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/declarations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -473,7 +473,7 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/declarations/annotations") @TestMetadata("compiler/testData/ir/irText/declarations/annotations")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Annotations extends AbstractIrTextTest { public class Annotations {
@Test @Test
public void testAllFilesPresentInAnnotations() throws Exception { public void testAllFilesPresentInAnnotations() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/declarations/annotations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/declarations/annotations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -675,7 +675,7 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/declarations/multiplatform") @TestMetadata("compiler/testData/ir/irText/declarations/multiplatform")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Multiplatform extends AbstractIrTextTest { public class Multiplatform {
@Test @Test
public void testAllFilesPresentInMultiplatform() throws Exception { public void testAllFilesPresentInMultiplatform() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/declarations/multiplatform"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/declarations/multiplatform"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -703,7 +703,7 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/declarations/parameters") @TestMetadata("compiler/testData/ir/irText/declarations/parameters")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Parameters extends AbstractIrTextTest { public class Parameters {
@Test @Test
public void testAllFilesPresentInParameters() throws Exception { public void testAllFilesPresentInParameters() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/declarations/parameters"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/declarations/parameters"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -791,7 +791,7 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/declarations/provideDelegate") @TestMetadata("compiler/testData/ir/irText/declarations/provideDelegate")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ProvideDelegate extends AbstractIrTextTest { public class ProvideDelegate {
@Test @Test
public void testAllFilesPresentInProvideDelegate() throws Exception { public void testAllFilesPresentInProvideDelegate() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/declarations/provideDelegate"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/declarations/provideDelegate"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -838,7 +838,7 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/errors") @TestMetadata("compiler/testData/ir/irText/errors")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Errors extends AbstractIrTextTest { public class Errors {
@Test @Test
public void testAllFilesPresentInErrors() throws Exception { public void testAllFilesPresentInErrors() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/errors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/errors"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -860,7 +860,7 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/expressions") @TestMetadata("compiler/testData/ir/irText/expressions")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Expressions extends AbstractIrTextTest { public class Expressions {
@Test @Test
public void testAllFilesPresentInExpressions() throws Exception { public void testAllFilesPresentInExpressions() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/expressions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/expressions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1721,7 +1721,7 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/expressions/callableReferences") @TestMetadata("compiler/testData/ir/irText/expressions/callableReferences")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class CallableReferences extends AbstractIrTextTest { public class CallableReferences {
@Test @Test
@TestMetadata("adaptedExtensionFunctions.kt") @TestMetadata("adaptedExtensionFunctions.kt")
public void testAdaptedExtensionFunctions() throws Exception { public void testAdaptedExtensionFunctions() throws Exception {
@@ -1839,7 +1839,7 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/expressions/floatingPointComparisons") @TestMetadata("compiler/testData/ir/irText/expressions/floatingPointComparisons")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FloatingPointComparisons extends AbstractIrTextTest { public class FloatingPointComparisons {
@Test @Test
public void testAllFilesPresentInFloatingPointComparisons() throws Exception { public void testAllFilesPresentInFloatingPointComparisons() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/expressions/floatingPointComparisons"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/expressions/floatingPointComparisons"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1915,7 +1915,7 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/expressions/funInterface") @TestMetadata("compiler/testData/ir/irText/expressions/funInterface")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FunInterface extends AbstractIrTextTest { public class FunInterface {
@Test @Test
public void testAllFilesPresentInFunInterface() throws Exception { public void testAllFilesPresentInFunInterface() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/expressions/funInterface"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/expressions/funInterface"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -1973,7 +1973,7 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/expressions/sam") @TestMetadata("compiler/testData/ir/irText/expressions/sam")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Sam extends AbstractIrTextTest { public class Sam {
@Test @Test
public void testAllFilesPresentInSam() throws Exception { public void testAllFilesPresentInSam() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/expressions/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/expressions/sam"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2050,7 +2050,7 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/firProblems") @TestMetadata("compiler/testData/ir/irText/firProblems")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FirProblems extends AbstractIrTextTest { public class FirProblems {
@Test @Test
@TestMetadata("AbstractMutableMap.kt") @TestMetadata("AbstractMutableMap.kt")
public void testAbstractMutableMap() throws Exception { public void testAbstractMutableMap() throws Exception {
@@ -2240,7 +2240,7 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/lambdas") @TestMetadata("compiler/testData/ir/irText/lambdas")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Lambdas extends AbstractIrTextTest { public class Lambdas {
@Test @Test
public void testAllFilesPresentInLambdas() throws Exception { public void testAllFilesPresentInLambdas() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/lambdas"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/lambdas"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2298,7 +2298,7 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/regressions") @TestMetadata("compiler/testData/ir/irText/regressions")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Regressions extends AbstractIrTextTest { public class Regressions {
@Test @Test
public void testAllFilesPresentInRegressions() throws Exception { public void testAllFilesPresentInRegressions() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/regressions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/regressions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2337,7 +2337,7 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/regressions/newInference") @TestMetadata("compiler/testData/ir/irText/regressions/newInference")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NewInference extends AbstractIrTextTest { public class NewInference {
@Test @Test
public void testAllFilesPresentInNewInference() throws Exception { public void testAllFilesPresentInNewInference() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/regressions/newInference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/regressions/newInference"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2354,7 +2354,7 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/singletons") @TestMetadata("compiler/testData/ir/irText/singletons")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Singletons extends AbstractIrTextTest { public class Singletons {
@Test @Test
public void testAllFilesPresentInSingletons() throws Exception { public void testAllFilesPresentInSingletons() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/singletons"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/singletons"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2382,7 +2382,7 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/stubs") @TestMetadata("compiler/testData/ir/irText/stubs")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Stubs extends AbstractIrTextTest { public class Stubs {
@Test @Test
public void testAllFilesPresentInStubs() throws Exception { public void testAllFilesPresentInStubs() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/stubs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/stubs"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2470,7 +2470,7 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/types") @TestMetadata("compiler/testData/ir/irText/types")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class Types extends AbstractIrTextTest { public class Types {
@Test @Test
@TestMetadata("abbreviatedTypes.kt") @TestMetadata("abbreviatedTypes.kt")
public void testAbbreviatedTypes() throws Exception { public void testAbbreviatedTypes() throws Exception {
@@ -2623,7 +2623,7 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/types/nullChecks") @TestMetadata("compiler/testData/ir/irText/types/nullChecks")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NullChecks extends AbstractIrTextTest { public class NullChecks {
@Test @Test
public void testAllFilesPresentInNullChecks() throws Exception { public void testAllFilesPresentInNullChecks() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/types/nullChecks"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/types/nullChecks"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -2674,7 +2674,7 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
@Nested @Nested
@TestMetadata("compiler/testData/ir/irText/types/nullChecks/nullCheckOnLambdaResult") @TestMetadata("compiler/testData/ir/irText/types/nullChecks/nullCheckOnLambdaResult")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NullCheckOnLambdaResult extends AbstractIrTextTest { public class NullCheckOnLambdaResult {
@Test @Test
public void testAllFilesPresentInNullCheckOnLambdaResult() throws Exception { public void testAllFilesPresentInNullCheckOnLambdaResult() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/types/nullChecks/nullCheckOnLambdaResult"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/types/nullChecks/nullCheckOnLambdaResult"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
@@ -186,7 +186,9 @@ object NewTestGeneratorImpl : TestGenerator(METHOD_GENERATORS) {
p.generateTestDataPath(testClassModel) p.generateTestDataPath(testClassModel)
p.generateParameterAnnotations(testClassModel) p.generateParameterAnnotations(testClassModel)
p.println("public class ${testClassModel.name} extends $baseTestClassName {") val extendsClause = if (!isNested) " extends $baseTestClassName" else ""
p.println("public class ${testClassModel.name}$extendsClause {")
p.pushIndent() p.pushIndent()
val testMethods = testClassModel.methods val testMethods = testClassModel.methods