[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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve")
@TestDataPath("$PROJECT_ROOT")
public class Resolve extends AbstractFirDiagnosticTest {
public class Resolve {
@Test
public void testAllFilesPresentInResolve() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/arguments")
@TestDataPath("$PROJECT_ROOT")
public class Arguments extends AbstractFirDiagnosticTest {
public class Arguments {
@Test
public void testAllFilesPresentInArguments() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/arrays")
@TestDataPath("$PROJECT_ROOT")
public class Arrays extends AbstractFirDiagnosticTest {
public class Arrays {
@Test
public void testAllFilesPresentInArrays() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/builtins")
@TestDataPath("$PROJECT_ROOT")
public class Builtins extends AbstractFirDiagnosticTest {
public class Builtins {
@Test
public void testAllFilesPresentInBuiltins() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/callResolution")
@TestDataPath("$PROJECT_ROOT")
public class CallResolution extends AbstractFirDiagnosticTest {
public class CallResolution {
@Test
public void testAllFilesPresentInCallResolution() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/cfg")
@TestDataPath("$PROJECT_ROOT")
public class Cfg extends AbstractFirDiagnosticTest {
public class Cfg {
@Test
public void testAllFilesPresentInCfg() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/constructors")
@TestDataPath("$PROJECT_ROOT")
public class Constructors extends AbstractFirDiagnosticTest {
public class Constructors {
@Test
public void testAllFilesPresentInConstructors() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/delegates")
@TestDataPath("$PROJECT_ROOT")
public class Delegates extends AbstractFirDiagnosticTest {
public class Delegates {
@Test
public void testAllFilesPresentInDelegates() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/diagnostics")
@TestDataPath("$PROJECT_ROOT")
public class Diagnostics extends AbstractFirDiagnosticTest {
public class Diagnostics {
@Test
@TestMetadata("abstractSuperCall.kt")
public void testAbstractSuperCall() throws Exception {
@@ -1434,7 +1434,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/diagnostics/functionAsExpression")
@TestDataPath("$PROJECT_ROOT")
public class FunctionAsExpression extends AbstractFirDiagnosticTest {
public class FunctionAsExpression {
@Test
public void testAllFilesPresentInFunctionAsExpression() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/expresssions")
@TestDataPath("$PROJECT_ROOT")
public class Expresssions extends AbstractFirDiagnosticTest {
public class Expresssions {
@Test
@TestMetadata("access.kt")
public void testAccess() throws Exception {
@@ -1826,7 +1826,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/expresssions/inference")
@TestDataPath("$PROJECT_ROOT")
public class Inference extends AbstractFirDiagnosticTest {
public class Inference {
@Test
public void testAllFilesPresentInInference() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/expresssions/invoke")
@TestDataPath("$PROJECT_ROOT")
public class Invoke extends AbstractFirDiagnosticTest {
public class Invoke {
@Test
public void testAllFilesPresentInInvoke() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/expresssions/operators")
@TestDataPath("$PROJECT_ROOT")
public class Operators extends AbstractFirDiagnosticTest {
public class Operators {
@Test
public void testAllFilesPresentInOperators() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers")
@TestDataPath("$PROJECT_ROOT")
public class ExtendedCheckers extends AbstractFirDiagnosticTest {
public class ExtendedCheckers {
@Test
public void testAllFilesPresentInExtendedCheckers() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/canBeReplacedWithOperatorAssignment")
@TestDataPath("$PROJECT_ROOT")
public class CanBeReplacedWithOperatorAssignment extends AbstractFirDiagnosticTest {
public class CanBeReplacedWithOperatorAssignment {
@Test
public void testAllFilesPresentInCanBeReplacedWithOperatorAssignment() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/emptyRangeChecker")
@TestDataPath("$PROJECT_ROOT")
public class EmptyRangeChecker extends AbstractFirDiagnosticTest {
public class EmptyRangeChecker {
@Test
public void testAllFilesPresentInEmptyRangeChecker() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/RedundantCallOfConversionMethod")
@TestDataPath("$PROJECT_ROOT")
public class RedundantCallOfConversionMethod extends AbstractFirDiagnosticTest {
public class RedundantCallOfConversionMethod {
@Test
public void testAllFilesPresentInRedundantCallOfConversionMethod() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/unused")
@TestDataPath("$PROJECT_ROOT")
public class Unused extends AbstractFirDiagnosticTest {
public class Unused {
@Test
public void testAllFilesPresentInUnused() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/extendedCheckers/UselessCallOnNotNullChecker")
@TestDataPath("$PROJECT_ROOT")
public class UselessCallOnNotNullChecker extends AbstractFirDiagnosticTest {
public class UselessCallOnNotNullChecker {
@Test
public void testAllFilesPresentInUselessCallOnNotNullChecker() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/fromBuilder")
@TestDataPath("$PROJECT_ROOT")
public class FromBuilder extends AbstractFirDiagnosticTest {
public class FromBuilder {
@Test
public void testAllFilesPresentInFromBuilder() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/inference")
@TestDataPath("$PROJECT_ROOT")
public class Inference extends AbstractFirDiagnosticTest {
public class Inference {
@Test
public void testAllFilesPresentInInference() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/innerClasses")
@TestDataPath("$PROJECT_ROOT")
public class InnerClasses extends AbstractFirDiagnosticTest {
public class InnerClasses {
@Test
public void testAllFilesPresentInInnerClasses() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/localClasses")
@TestDataPath("$PROJECT_ROOT")
public class LocalClasses extends AbstractFirDiagnosticTest {
public class LocalClasses {
@Test
public void testAllFilesPresentInLocalClasses() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/multifile")
@TestDataPath("$PROJECT_ROOT")
public class Multifile extends AbstractFirDiagnosticTest {
public class Multifile {
@Test
public void testAllFilesPresentInMultifile() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/overrides")
@TestDataPath("$PROJECT_ROOT")
public class Overrides extends AbstractFirDiagnosticTest {
public class Overrides {
@Test
public void testAllFilesPresentInOverrides() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/problems")
@TestDataPath("$PROJECT_ROOT")
public class Problems extends AbstractFirDiagnosticTest {
public class Problems {
@Test
public void testAllFilesPresentInProblems() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/properties")
@TestDataPath("$PROJECT_ROOT")
public class Properties extends AbstractFirDiagnosticTest {
public class Properties {
@Test
public void testAllFilesPresentInProperties() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/references")
@TestDataPath("$PROJECT_ROOT")
public class References extends AbstractFirDiagnosticTest {
public class References {
@Test
public void testAllFilesPresentInReferences() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/samConstructors")
@TestDataPath("$PROJECT_ROOT")
public class SamConstructors extends AbstractFirDiagnosticTest {
public class SamConstructors {
@Test
public void testAllFilesPresentInSamConstructors() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/samConversions")
@TestDataPath("$PROJECT_ROOT")
public class SamConversions extends AbstractFirDiagnosticTest {
public class SamConversions {
@Test
public void testAllFilesPresentInSamConversions() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts")
@TestDataPath("$PROJECT_ROOT")
public class Smartcasts extends AbstractFirDiagnosticTest {
public class Smartcasts {
@Test
public void testAllFilesPresentInSmartcasts() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/booleans")
@TestDataPath("$PROJECT_ROOT")
public class Booleans extends AbstractFirDiagnosticTest {
public class Booleans {
@Test
public void testAllFilesPresentInBooleans() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/boundSmartcasts")
@TestDataPath("$PROJECT_ROOT")
public class BoundSmartcasts extends AbstractFirDiagnosticTest {
public class BoundSmartcasts {
@Test
public void testAllFilesPresentInBoundSmartcasts() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/controlStructures")
@TestDataPath("$PROJECT_ROOT")
public class ControlStructures extends AbstractFirDiagnosticTest {
public class ControlStructures {
@Test
public void testAllFilesPresentInControlStructures() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/lambdas")
@TestDataPath("$PROJECT_ROOT")
public class Lambdas extends AbstractFirDiagnosticTest {
public class Lambdas {
@Test
public void testAllFilesPresentInLambdas() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/loops")
@TestDataPath("$PROJECT_ROOT")
public class Loops extends AbstractFirDiagnosticTest {
public class Loops {
@Test
public void testAllFilesPresentInLoops() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/problems")
@TestDataPath("$PROJECT_ROOT")
public class Problems extends AbstractFirDiagnosticTest {
public class Problems {
@Test
public void testAllFilesPresentInProblems() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/receivers")
@TestDataPath("$PROJECT_ROOT")
public class Receivers extends AbstractFirDiagnosticTest {
public class Receivers {
@Test
public void testAllFilesPresentInReceivers() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/safeCalls")
@TestDataPath("$PROJECT_ROOT")
public class SafeCalls extends AbstractFirDiagnosticTest {
public class SafeCalls {
@Test
public void testAllFilesPresentInSafeCalls() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/stability")
@TestDataPath("$PROJECT_ROOT")
public class Stability extends AbstractFirDiagnosticTest {
public class Stability {
@Test
public void testAllFilesPresentInStability() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/smartcasts/variables")
@TestDataPath("$PROJECT_ROOT")
public class Variables extends AbstractFirDiagnosticTest {
public class Variables {
@Test
public void testAllFilesPresentInVariables() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/stdlib")
@TestDataPath("$PROJECT_ROOT")
public class Stdlib extends AbstractFirDiagnosticTest {
public class Stdlib {
@Test
public void testAllFilesPresentInStdlib() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/stdlib/j+k")
@TestDataPath("$PROJECT_ROOT")
public class J_k extends AbstractFirDiagnosticTest {
public class J_k {
@Test
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);
@@ -3477,7 +3477,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/types")
@TestDataPath("$PROJECT_ROOT")
public class Types extends AbstractFirDiagnosticTest {
public class Types {
@Test
public void testAllFilesPresentInTypes() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/visibility")
@TestDataPath("$PROJECT_ROOT")
public class Visibility extends AbstractFirDiagnosticTest {
public class Visibility {
@Test
public void testAllFilesPresentInVisibility() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib")
@TestDataPath("$PROJECT_ROOT")
public class ResolveWithStdlib extends AbstractFirDiagnosticTest {
public class ResolveWithStdlib {
@Test
@TestMetadata("addAllOnJavaCollection.kt")
public void testAddAllOnJavaCollection() throws Exception {
@@ -3915,7 +3915,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/callableReferences")
@TestDataPath("$PROJECT_ROOT")
public class CallableReferences extends AbstractFirDiagnosticTest {
public class CallableReferences {
@Test
public void testAllFilesPresentInCallableReferences() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/callableReferences/fromBasicDiagnosticTests")
@TestDataPath("$PROJECT_ROOT")
public class FromBasicDiagnosticTests extends AbstractFirDiagnosticTest {
public class FromBasicDiagnosticTests {
@Test
public void testAllFilesPresentInFromBasicDiagnosticTests() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts")
@TestDataPath("$PROJECT_ROOT")
public class Contracts extends AbstractFirDiagnosticTest {
public class Contracts {
@Test
public void testAllFilesPresentInContracts() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromLibrary")
@TestDataPath("$PROJECT_ROOT")
public class FromLibrary extends AbstractFirDiagnosticTest {
public class FromLibrary {
@Test
public void testAllFilesPresentInFromLibrary() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource")
@TestDataPath("$PROJECT_ROOT")
public class FromSource extends AbstractFirDiagnosticTest {
public class FromSource {
@Test
public void testAllFilesPresentInFromSource() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad")
@TestDataPath("$PROJECT_ROOT")
public class Bad extends AbstractFirDiagnosticTest {
public class Bad {
@Test
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);
@@ -4206,7 +4206,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad/callsInPlace")
@TestDataPath("$PROJECT_ROOT")
public class CallsInPlace extends AbstractFirDiagnosticTest {
public class CallsInPlace {
@Test
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);
@@ -4240,7 +4240,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad/returnsImplies")
@TestDataPath("$PROJECT_ROOT")
public class ReturnsImplies extends AbstractFirDiagnosticTest {
public class ReturnsImplies {
@Test
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);
@@ -4263,7 +4263,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good")
@TestDataPath("$PROJECT_ROOT")
public class Good extends AbstractFirDiagnosticTest {
public class Good {
@Test
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);
@@ -4272,7 +4272,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/callsInPlace")
@TestDataPath("$PROJECT_ROOT")
public class CallsInPlace extends AbstractFirDiagnosticTest {
public class CallsInPlace {
@Test
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);
@@ -4330,7 +4330,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/returnsImplies")
@TestDataPath("$PROJECT_ROOT")
public class ReturnsImplies extends AbstractFirDiagnosticTest {
public class ReturnsImplies {
@Test
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);
@@ -4406,7 +4406,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/variousContracts")
@TestDataPath("$PROJECT_ROOT")
public class VariousContracts extends AbstractFirDiagnosticTest {
public class VariousContracts {
@Test
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);
@@ -4415,7 +4415,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/variousContracts/newSyntax")
@TestDataPath("$PROJECT_ROOT")
public class NewSyntax extends AbstractFirDiagnosticTest {
public class NewSyntax {
@Test
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);
@@ -4435,7 +4435,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/delegates")
@TestDataPath("$PROJECT_ROOT")
public class Delegates extends AbstractFirDiagnosticTest {
public class Delegates {
@Test
public void testAllFilesPresentInDelegates() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/inference")
@TestDataPath("$PROJECT_ROOT")
public class Inference extends AbstractFirDiagnosticTest {
public class Inference {
@Test
public void testAllFilesPresentInInference() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/initialization")
@TestDataPath("$PROJECT_ROOT")
public class Initialization extends AbstractFirDiagnosticTest {
public class Initialization {
@Test
public void testAllFilesPresentInInitialization() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/j+k")
@TestDataPath("$PROJECT_ROOT")
public class J_k extends AbstractFirDiagnosticTest {
public class J_k {
@Test
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);
@@ -4841,7 +4841,7 @@ public class FirDiagnosticTestGenerated extends AbstractFirDiagnosticTest {
@Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/multiModule")
@TestDataPath("$PROJECT_ROOT")
public class MultiModule extends AbstractFirDiagnosticTest {
public class MultiModule {
@Test
public void testAllFilesPresentInMultiModule() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/problems")
@TestDataPath("$PROJECT_ROOT")
public class Problems extends AbstractFirDiagnosticTest {
public class Problems {
@Test
public void testAllFilesPresentInProblems() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/reinitializations")
@TestDataPath("$PROJECT_ROOT")
public class Reinitializations extends AbstractFirDiagnosticTest {
public class Reinitializations {
@Test
public void testAllFilesPresentInReinitializations() throws Exception {
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
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/smartcasts")
@TestDataPath("$PROJECT_ROOT")
public class Smartcasts extends AbstractFirDiagnosticTest {
public class Smartcasts {
@Test
public void testAllFilesPresentInSmartcasts() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Resolve extends AbstractFirDiagnosticsWithLightTreeTest {
public class Resolve {
@Test
public void testAllFilesPresentInResolve() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Arguments extends AbstractFirDiagnosticsWithLightTreeTest {
public class Arguments {
@Test
public void testAllFilesPresentInArguments() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Arrays extends AbstractFirDiagnosticsWithLightTreeTest {
public class Arrays {
@Test
public void testAllFilesPresentInArrays() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Builtins extends AbstractFirDiagnosticsWithLightTreeTest {
public class Builtins {
@Test
public void testAllFilesPresentInBuiltins() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class CallResolution extends AbstractFirDiagnosticsWithLightTreeTest {
public class CallResolution {
@Test
public void testAllFilesPresentInCallResolution() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Cfg extends AbstractFirDiagnosticsWithLightTreeTest {
public class Cfg {
@Test
public void testAllFilesPresentInCfg() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Constructors extends AbstractFirDiagnosticsWithLightTreeTest {
public class Constructors {
@Test
public void testAllFilesPresentInConstructors() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Delegates extends AbstractFirDiagnosticsWithLightTreeTest {
public class Delegates {
@Test
public void testAllFilesPresentInDelegates() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Diagnostics extends AbstractFirDiagnosticsWithLightTreeTest {
public class Diagnostics {
@Test
@TestMetadata("abstractSuperCall.kt")
public void testAbstractSuperCall() throws Exception {
@@ -1446,7 +1446,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/diagnostics/functionAsExpression")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class FunctionAsExpression extends AbstractFirDiagnosticsWithLightTreeTest {
public class FunctionAsExpression {
@Test
public void testAllFilesPresentInFunctionAsExpression() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Expresssions extends AbstractFirDiagnosticsWithLightTreeTest {
public class Expresssions {
@Test
@TestMetadata("access.kt")
public void testAccess() throws Exception {
@@ -1840,7 +1840,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/expresssions/inference")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Inference extends AbstractFirDiagnosticsWithLightTreeTest {
public class Inference {
@Test
public void testAllFilesPresentInInference() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Invoke extends AbstractFirDiagnosticsWithLightTreeTest {
public class Invoke {
@Test
public void testAllFilesPresentInInvoke() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Operators extends AbstractFirDiagnosticsWithLightTreeTest {
public class Operators {
@Test
public void testAllFilesPresentInOperators() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class ExtendedCheckers extends AbstractFirDiagnosticsWithLightTreeTest {
public class ExtendedCheckers {
@Test
public void testAllFilesPresentInExtendedCheckers() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class CanBeReplacedWithOperatorAssignment extends AbstractFirDiagnosticsWithLightTreeTest {
public class CanBeReplacedWithOperatorAssignment {
@Test
public void testAllFilesPresentInCanBeReplacedWithOperatorAssignment() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class EmptyRangeChecker extends AbstractFirDiagnosticsWithLightTreeTest {
public class EmptyRangeChecker {
@Test
public void testAllFilesPresentInEmptyRangeChecker() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class RedundantCallOfConversionMethod extends AbstractFirDiagnosticsWithLightTreeTest {
public class RedundantCallOfConversionMethod {
@Test
public void testAllFilesPresentInRedundantCallOfConversionMethod() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Unused extends AbstractFirDiagnosticsWithLightTreeTest {
public class Unused {
@Test
public void testAllFilesPresentInUnused() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class UselessCallOnNotNullChecker extends AbstractFirDiagnosticsWithLightTreeTest {
public class UselessCallOnNotNullChecker {
@Test
public void testAllFilesPresentInUselessCallOnNotNullChecker() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class FromBuilder extends AbstractFirDiagnosticsWithLightTreeTest {
public class FromBuilder {
@Test
public void testAllFilesPresentInFromBuilder() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Inference extends AbstractFirDiagnosticsWithLightTreeTest {
public class Inference {
@Test
public void testAllFilesPresentInInference() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class InnerClasses extends AbstractFirDiagnosticsWithLightTreeTest {
public class InnerClasses {
@Test
public void testAllFilesPresentInInnerClasses() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class LocalClasses extends AbstractFirDiagnosticsWithLightTreeTest {
public class LocalClasses {
@Test
public void testAllFilesPresentInLocalClasses() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Multifile extends AbstractFirDiagnosticsWithLightTreeTest {
public class Multifile {
@Test
public void testAllFilesPresentInMultifile() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Overrides extends AbstractFirDiagnosticsWithLightTreeTest {
public class Overrides {
@Test
public void testAllFilesPresentInOverrides() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Problems extends AbstractFirDiagnosticsWithLightTreeTest {
public class Problems {
@Test
public void testAllFilesPresentInProblems() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Properties extends AbstractFirDiagnosticsWithLightTreeTest {
public class Properties {
@Test
public void testAllFilesPresentInProperties() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class References extends AbstractFirDiagnosticsWithLightTreeTest {
public class References {
@Test
public void testAllFilesPresentInReferences() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class SamConstructors extends AbstractFirDiagnosticsWithLightTreeTest {
public class SamConstructors {
@Test
public void testAllFilesPresentInSamConstructors() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class SamConversions extends AbstractFirDiagnosticsWithLightTreeTest {
public class SamConversions {
@Test
public void testAllFilesPresentInSamConversions() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Smartcasts extends AbstractFirDiagnosticsWithLightTreeTest {
public class Smartcasts {
@Test
public void testAllFilesPresentInSmartcasts() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Booleans extends AbstractFirDiagnosticsWithLightTreeTest {
public class Booleans {
@Test
public void testAllFilesPresentInBooleans() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class BoundSmartcasts extends AbstractFirDiagnosticsWithLightTreeTest {
public class BoundSmartcasts {
@Test
public void testAllFilesPresentInBoundSmartcasts() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class ControlStructures extends AbstractFirDiagnosticsWithLightTreeTest {
public class ControlStructures {
@Test
public void testAllFilesPresentInControlStructures() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Lambdas extends AbstractFirDiagnosticsWithLightTreeTest {
public class Lambdas {
@Test
public void testAllFilesPresentInLambdas() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Loops extends AbstractFirDiagnosticsWithLightTreeTest {
public class Loops {
@Test
public void testAllFilesPresentInLoops() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Problems extends AbstractFirDiagnosticsWithLightTreeTest {
public class Problems {
@Test
public void testAllFilesPresentInProblems() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Receivers extends AbstractFirDiagnosticsWithLightTreeTest {
public class Receivers {
@Test
public void testAllFilesPresentInReceivers() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class SafeCalls extends AbstractFirDiagnosticsWithLightTreeTest {
public class SafeCalls {
@Test
public void testAllFilesPresentInSafeCalls() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Stability extends AbstractFirDiagnosticsWithLightTreeTest {
public class Stability {
@Test
public void testAllFilesPresentInStability() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Variables extends AbstractFirDiagnosticsWithLightTreeTest {
public class Variables {
@Test
public void testAllFilesPresentInVariables() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Stdlib extends AbstractFirDiagnosticsWithLightTreeTest {
public class Stdlib {
@Test
public void testAllFilesPresentInStdlib() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class J_k extends AbstractFirDiagnosticsWithLightTreeTest {
public class J_k {
@Test
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);
@@ -3524,7 +3524,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolve/types")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Types extends AbstractFirDiagnosticsWithLightTreeTest {
public class Types {
@Test
public void testAllFilesPresentInTypes() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Visibility extends AbstractFirDiagnosticsWithLightTreeTest {
public class Visibility {
@Test
public void testAllFilesPresentInVisibility() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class ResolveWithStdlib extends AbstractFirDiagnosticsWithLightTreeTest {
public class ResolveWithStdlib {
@Test
@TestMetadata("addAllOnJavaCollection.kt")
public void testAddAllOnJavaCollection() throws Exception {
@@ -3965,7 +3965,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/callableReferences")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class CallableReferences extends AbstractFirDiagnosticsWithLightTreeTest {
public class CallableReferences {
@Test
public void testAllFilesPresentInCallableReferences() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class FromBasicDiagnosticTests extends AbstractFirDiagnosticsWithLightTreeTest {
public class FromBasicDiagnosticTests {
@Test
public void testAllFilesPresentInFromBasicDiagnosticTests() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Contracts extends AbstractFirDiagnosticsWithLightTreeTest {
public class Contracts {
@Test
public void testAllFilesPresentInContracts() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class FromLibrary extends AbstractFirDiagnosticsWithLightTreeTest {
public class FromLibrary {
@Test
public void testAllFilesPresentInFromLibrary() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class FromSource extends AbstractFirDiagnosticsWithLightTreeTest {
public class FromSource {
@Test
public void testAllFilesPresentInFromSource() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Bad extends AbstractFirDiagnosticsWithLightTreeTest {
public class Bad {
@Test
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);
@@ -4262,7 +4262,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad/callsInPlace")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class CallsInPlace extends AbstractFirDiagnosticsWithLightTreeTest {
public class CallsInPlace {
@Test
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);
@@ -4297,7 +4297,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/bad/returnsImplies")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class ReturnsImplies extends AbstractFirDiagnosticsWithLightTreeTest {
public class ReturnsImplies {
@Test
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);
@@ -4321,7 +4321,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Good extends AbstractFirDiagnosticsWithLightTreeTest {
public class Good {
@Test
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);
@@ -4331,7 +4331,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/callsInPlace")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class CallsInPlace extends AbstractFirDiagnosticsWithLightTreeTest {
public class CallsInPlace {
@Test
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);
@@ -4390,7 +4390,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/returnsImplies")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class ReturnsImplies extends AbstractFirDiagnosticsWithLightTreeTest {
public class ReturnsImplies {
@Test
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);
@@ -4467,7 +4467,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/variousContracts")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class VariousContracts extends AbstractFirDiagnosticsWithLightTreeTest {
public class VariousContracts {
@Test
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);
@@ -4477,7 +4477,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/contracts/fromSource/good/variousContracts/newSyntax")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class NewSyntax extends AbstractFirDiagnosticsWithLightTreeTest {
public class NewSyntax {
@Test
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);
@@ -4498,7 +4498,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/delegates")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Delegates extends AbstractFirDiagnosticsWithLightTreeTest {
public class Delegates {
@Test
public void testAllFilesPresentInDelegates() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Inference extends AbstractFirDiagnosticsWithLightTreeTest {
public class Inference {
@Test
public void testAllFilesPresentInInference() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Initialization extends AbstractFirDiagnosticsWithLightTreeTest {
public class Initialization {
@Test
public void testAllFilesPresentInInitialization() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class J_k extends AbstractFirDiagnosticsWithLightTreeTest {
public class J_k {
@Test
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);
@@ -4908,7 +4908,7 @@ public class FirDiagnosticsWithLightTreeTestGenerated extends AbstractFirDiagnos
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/multiModule")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class MultiModule extends AbstractFirDiagnosticsWithLightTreeTest {
public class MultiModule {
@Test
public void testAllFilesPresentInMultiModule() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Problems extends AbstractFirDiagnosticsWithLightTreeTest {
public class Problems {
@Test
public void testAllFilesPresentInProblems() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Reinitializations extends AbstractFirDiagnosticsWithLightTreeTest {
public class Reinitializations {
@Test
public void testAllFilesPresentInReinitializations() throws Exception {
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")
@TestDataPath("$PROJECT_ROOT")
@Execution(ExecutionMode.SAME_THREAD)
public class Smartcasts extends AbstractFirDiagnosticsWithLightTreeTest {
public class Smartcasts {
@Test
public void testAllFilesPresentInSmartcasts() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject")
@TestDataPath("$PROJECT_ROOT")
public class AnonymousObject extends AbstractFirBlackBoxInlineCodegenTest {
public class AnonymousObject {
@Test
public void testAllFilesPresentInAnonymousObject() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/enumWhen")
@TestDataPath("$PROJECT_ROOT")
public class EnumWhen extends AbstractFirBlackBoxInlineCodegenTest {
public class EnumWhen {
@Test
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);
@@ -437,7 +437,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturing")
@TestDataPath("$PROJECT_ROOT")
public class ProperRecapturing extends AbstractFirBlackBoxInlineCodegenTest {
public class ProperRecapturing {
@Test
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);
@@ -483,7 +483,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/properRecapturingInClass")
@TestDataPath("$PROJECT_ROOT")
public class ProperRecapturingInClass extends AbstractFirBlackBoxInlineCodegenTest {
public class ProperRecapturingInClass {
@Test
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);
@@ -565,7 +565,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/sam")
@TestDataPath("$PROJECT_ROOT")
public class Sam extends AbstractFirBlackBoxInlineCodegenTest {
public class Sam {
@Test
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);
@@ -617,7 +617,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers")
@TestDataPath("$PROJECT_ROOT")
public class TwoCapturedReceivers extends AbstractFirBlackBoxInlineCodegenTest {
public class TwoCapturedReceivers {
@Test
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);
@@ -658,7 +658,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/argumentOrder")
@TestDataPath("$PROJECT_ROOT")
public class ArgumentOrder extends AbstractFirBlackBoxInlineCodegenTest {
public class ArgumentOrder {
@Test
public void testAllFilesPresentInArgumentOrder() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/arrayConvention")
@TestDataPath("$PROJECT_ROOT")
public class ArrayConvention extends AbstractFirBlackBoxInlineCodegenTest {
public class ArrayConvention {
@Test
public void testAllFilesPresentInArrayConvention() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/assert")
@TestDataPath("$PROJECT_ROOT")
public class Assert extends AbstractFirBlackBoxInlineCodegenTest {
public class Assert {
@Test
public void testAllFilesPresentInAssert() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/builders")
@TestDataPath("$PROJECT_ROOT")
public class Builders extends AbstractFirBlackBoxInlineCodegenTest {
public class Builders {
@Test
public void testAllFilesPresentInBuilders() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/bytecodePreprocessing")
@TestDataPath("$PROJECT_ROOT")
public class BytecodePreprocessing extends AbstractFirBlackBoxInlineCodegenTest {
public class BytecodePreprocessing {
@Test
public void testAllFilesPresentInBytecodePreprocessing() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/callableReference")
@TestDataPath("$PROJECT_ROOT")
public class CallableReference extends AbstractFirBlackBoxInlineCodegenTest {
public class CallableReference {
@Test
@TestMetadata("adapted.kt")
public void testAdapted() throws Exception {
@@ -1023,7 +1023,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/callableReference/bound")
@TestDataPath("$PROJECT_ROOT")
public class Bound extends AbstractFirBlackBoxInlineCodegenTest {
public class Bound {
@Test
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);
@@ -1184,7 +1184,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/capture")
@TestDataPath("$PROJECT_ROOT")
public class Capture extends AbstractFirBlackBoxInlineCodegenTest {
public class Capture {
@Test
public void testAllFilesPresentInCapture() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/complex")
@TestDataPath("$PROJECT_ROOT")
public class Complex extends AbstractFirBlackBoxInlineCodegenTest {
public class Complex {
@Test
public void testAllFilesPresentInComplex() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/complexStack")
@TestDataPath("$PROJECT_ROOT")
public class ComplexStack extends AbstractFirBlackBoxInlineCodegenTest {
public class ComplexStack {
@Test
public void testAllFilesPresentInComplexStack() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/contracts")
@TestDataPath("$PROJECT_ROOT")
public class Contracts extends AbstractFirBlackBoxInlineCodegenTest {
public class Contracts {
@Test
public void testAllFilesPresentInContracts() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues")
@TestDataPath("$PROJECT_ROOT")
public class DefaultValues extends AbstractFirBlackBoxInlineCodegenTest {
public class DefaultValues {
@Test
@TestMetadata("33Parameters.kt")
public void test33Parameters() throws Exception {
@@ -1581,7 +1581,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining")
@TestDataPath("$PROJECT_ROOT")
public class LambdaInlining extends AbstractFirBlackBoxInlineCodegenTest {
public class LambdaInlining {
@Test
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);
@@ -1782,7 +1782,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences")
@TestDataPath("$PROJECT_ROOT")
public class CallableReferences extends AbstractFirBlackBoxInlineCodegenTest {
public class CallableReferences {
@Test
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);
@@ -1925,7 +1925,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/maskElimination")
@TestDataPath("$PROJECT_ROOT")
public class MaskElimination extends AbstractFirBlackBoxInlineCodegenTest {
public class MaskElimination {
@Test
@TestMetadata("32Parameters.kt")
public void test32Parameters() throws Exception {
@@ -1978,7 +1978,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/delegatedProperty")
@TestDataPath("$PROJECT_ROOT")
public class DelegatedProperty extends AbstractFirBlackBoxInlineCodegenTest {
public class DelegatedProperty {
@Test
public void testAllFilesPresentInDelegatedProperty() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/enclosingInfo")
@TestDataPath("$PROJECT_ROOT")
public class EnclosingInfo extends AbstractFirBlackBoxInlineCodegenTest {
public class EnclosingInfo {
@Test
public void testAllFilesPresentInEnclosingInfo() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/enum")
@TestDataPath("$PROJECT_ROOT")
public class Enum extends AbstractFirBlackBoxInlineCodegenTest {
public class Enum {
@Test
public void testAllFilesPresentInEnum() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/functionExpression")
@TestDataPath("$PROJECT_ROOT")
public class FunctionExpression extends AbstractFirBlackBoxInlineCodegenTest {
public class FunctionExpression {
@Test
public void testAllFilesPresentInFunctionExpression() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses")
@TestDataPath("$PROJECT_ROOT")
public class InlineClasses extends AbstractFirBlackBoxInlineCodegenTest {
public class InlineClasses {
@Test
public void testAllFilesPresentInInlineClasses() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter")
@TestDataPath("$PROJECT_ROOT")
public class UnboxGenericParameter extends AbstractFirBlackBoxInlineCodegenTest {
public class UnboxGenericParameter {
@Test
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);
@@ -2240,7 +2240,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/funInterface")
@TestDataPath("$PROJECT_ROOT")
public class FunInterface extends AbstractFirBlackBoxInlineCodegenTest {
public class FunInterface {
@Test
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);
@@ -2286,7 +2286,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/lambda")
@TestDataPath("$PROJECT_ROOT")
public class Lambda extends AbstractFirBlackBoxInlineCodegenTest {
public class Lambda {
@Test
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);
@@ -2332,7 +2332,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/inlineClasses/unboxGenericParameter/objectLiteral")
@TestDataPath("$PROJECT_ROOT")
public class ObjectLiteral extends AbstractFirBlackBoxInlineCodegenTest {
public class ObjectLiteral {
@Test
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);
@@ -2380,7 +2380,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/innerClasses")
@TestDataPath("$PROJECT_ROOT")
public class InnerClasses extends AbstractFirBlackBoxInlineCodegenTest {
public class InnerClasses {
@Test
public void testAllFilesPresentInInnerClasses() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/jvmName")
@TestDataPath("$PROJECT_ROOT")
public class JvmName extends AbstractFirBlackBoxInlineCodegenTest {
public class JvmName {
@Test
public void testAllFilesPresentInJvmName() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/jvmPackageName")
@TestDataPath("$PROJECT_ROOT")
public class JvmPackageName extends AbstractFirBlackBoxInlineCodegenTest {
public class JvmPackageName {
@Test
public void testAllFilesPresentInJvmPackageName() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/lambdaClassClash")
@TestDataPath("$PROJECT_ROOT")
public class LambdaClassClash extends AbstractFirBlackBoxInlineCodegenTest {
public class LambdaClassClash {
@Test
public void testAllFilesPresentInLambdaClassClash() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/lambdaTransformation")
@TestDataPath("$PROJECT_ROOT")
public class LambdaTransformation extends AbstractFirBlackBoxInlineCodegenTest {
public class LambdaTransformation {
@Test
public void testAllFilesPresentInLambdaTransformation() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/localFunInLambda")
@TestDataPath("$PROJECT_ROOT")
public class LocalFunInLambda extends AbstractFirBlackBoxInlineCodegenTest {
public class LocalFunInLambda {
@Test
public void testAllFilesPresentInLocalFunInLambda() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/multiModule")
@TestDataPath("$PROJECT_ROOT")
public class MultiModule extends AbstractFirBlackBoxInlineCodegenTest {
public class MultiModule {
@Test
public void testAllFilesPresentInMultiModule() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/multifileClasses")
@TestDataPath("$PROJECT_ROOT")
public class MultifileClasses extends AbstractFirBlackBoxInlineCodegenTest {
public class MultifileClasses {
@Test
public void testAllFilesPresentInMultifileClasses() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/multiplatform")
@TestDataPath("$PROJECT_ROOT")
public class Multiplatform extends AbstractFirBlackBoxInlineCodegenTest {
public class Multiplatform {
@Test
public void testAllFilesPresentInMultiplatform() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/multiplatform/defaultArguments")
@TestDataPath("$PROJECT_ROOT")
public class DefaultArguments extends AbstractFirBlackBoxInlineCodegenTest {
public class DefaultArguments {
@Test
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);
@@ -2612,7 +2612,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/noInline")
@TestDataPath("$PROJECT_ROOT")
public class NoInline extends AbstractFirBlackBoxInlineCodegenTest {
public class NoInline {
@Test
public void testAllFilesPresentInNoInline() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns")
@TestDataPath("$PROJECT_ROOT")
public class NonLocalReturns extends AbstractFirBlackBoxInlineCodegenTest {
public class NonLocalReturns {
@Test
public void testAllFilesPresentInNonLocalReturns() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/deparenthesize")
@TestDataPath("$PROJECT_ROOT")
public class Deparenthesize extends AbstractFirBlackBoxInlineCodegenTest {
public class Deparenthesize {
@Test
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);
@@ -2827,7 +2827,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally")
@TestDataPath("$PROJECT_ROOT")
public class TryFinally extends AbstractFirBlackBoxInlineCodegenTest {
public class TryFinally {
@Test
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);
@@ -2914,7 +2914,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/callSite")
@TestDataPath("$PROJECT_ROOT")
public class CallSite extends AbstractFirBlackBoxInlineCodegenTest {
public class CallSite {
@Test
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);
@@ -2960,7 +2960,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/chained")
@TestDataPath("$PROJECT_ROOT")
public class Chained extends AbstractFirBlackBoxInlineCodegenTest {
public class Chained {
@Test
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);
@@ -3018,7 +3018,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/declSite")
@TestDataPath("$PROJECT_ROOT")
public class DeclSite extends AbstractFirBlackBoxInlineCodegenTest {
public class DeclSite {
@Test
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);
@@ -3100,7 +3100,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/exceptionTable")
@TestDataPath("$PROJECT_ROOT")
public class ExceptionTable extends AbstractFirBlackBoxInlineCodegenTest {
public class ExceptionTable {
@Test
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);
@@ -3236,7 +3236,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/nonLocalReturns/tryFinally/variables")
@TestDataPath("$PROJECT_ROOT")
public class Variables extends AbstractFirBlackBoxInlineCodegenTest {
public class Variables {
@Test
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);
@@ -3254,7 +3254,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/optimizations")
@TestDataPath("$PROJECT_ROOT")
public class Optimizations extends AbstractFirBlackBoxInlineCodegenTest {
public class Optimizations {
@Test
public void testAllFilesPresentInOptimizations() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/private")
@TestDataPath("$PROJECT_ROOT")
public class Private extends AbstractFirBlackBoxInlineCodegenTest {
public class Private {
@Test
@TestMetadata("accessorForConst.kt")
public void testAccessorForConst() throws Exception {
@@ -3352,7 +3352,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/property")
@TestDataPath("$PROJECT_ROOT")
public class Property extends AbstractFirBlackBoxInlineCodegenTest {
public class Property {
@Test
public void testAllFilesPresentInProperty() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/reified")
@TestDataPath("$PROJECT_ROOT")
public class Reified extends AbstractFirBlackBoxInlineCodegenTest {
public class Reified {
@Test
public void testAllFilesPresentInReified() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/reified/checkCast")
@TestDataPath("$PROJECT_ROOT")
public class CheckCast extends AbstractFirBlackBoxInlineCodegenTest {
public class CheckCast {
@Test
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);
@@ -3669,7 +3669,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/defaultLambda")
@TestDataPath("$PROJECT_ROOT")
public class DefaultLambda extends AbstractFirBlackBoxInlineCodegenTest {
public class DefaultLambda {
@Test
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);
@@ -3727,7 +3727,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/reified/isCheck")
@TestDataPath("$PROJECT_ROOT")
public class IsCheck extends AbstractFirBlackBoxInlineCodegenTest {
public class IsCheck {
@Test
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);
@@ -3756,7 +3756,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/signature")
@TestDataPath("$PROJECT_ROOT")
public class Signature extends AbstractFirBlackBoxInlineCodegenTest {
public class Signature {
@Test
public void testAllFilesPresentInSignature() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/simple")
@TestDataPath("$PROJECT_ROOT")
public class Simple extends AbstractFirBlackBoxInlineCodegenTest {
public class Simple {
@Test
public void testAllFilesPresentInSimple() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/smap")
@TestDataPath("$PROJECT_ROOT")
public class Smap extends AbstractFirBlackBoxInlineCodegenTest {
public class Smap {
@Test
public void testAllFilesPresentInSmap() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/smap/anonymous")
@TestDataPath("$PROJECT_ROOT")
public class Anonymous extends AbstractFirBlackBoxInlineCodegenTest {
public class Anonymous {
@Test
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);
@@ -4167,7 +4167,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/defaultLambda")
@TestDataPath("$PROJECT_ROOT")
public class DefaultLambda extends AbstractFirBlackBoxInlineCodegenTest {
public class DefaultLambda {
@Test
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);
@@ -4231,7 +4231,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/inlineOnly")
@TestDataPath("$PROJECT_ROOT")
public class InlineOnly extends AbstractFirBlackBoxInlineCodegenTest {
public class InlineOnly {
@Test
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);
@@ -4277,7 +4277,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/newsmap")
@TestDataPath("$PROJECT_ROOT")
public class Newsmap extends AbstractFirBlackBoxInlineCodegenTest {
public class Newsmap {
@Test
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);
@@ -4311,7 +4311,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/smap/resolve")
@TestDataPath("$PROJECT_ROOT")
public class Resolve extends AbstractFirBlackBoxInlineCodegenTest {
public class Resolve {
@Test
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);
@@ -4334,7 +4334,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/special")
@TestDataPath("$PROJECT_ROOT")
public class Special extends AbstractFirBlackBoxInlineCodegenTest {
public class Special {
@Test
public void testAllFilesPresentInSpecial() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/stackOnReturn")
@TestDataPath("$PROJECT_ROOT")
public class StackOnReturn extends AbstractFirBlackBoxInlineCodegenTest {
public class StackOnReturn {
@Test
public void testAllFilesPresentInStackOnReturn() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/suspend")
@TestDataPath("$PROJECT_ROOT")
public class Suspend extends AbstractFirBlackBoxInlineCodegenTest {
public class Suspend {
@Test
public void testAllFilesPresentInSuspend() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/suspend/callableReference")
@TestDataPath("$PROJECT_ROOT")
public class CallableReference extends AbstractFirBlackBoxInlineCodegenTest {
public class CallableReference {
@Test
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);
@@ -4733,7 +4733,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/defaultParameter")
@TestDataPath("$PROJECT_ROOT")
public class DefaultParameter extends AbstractFirBlackBoxInlineCodegenTest {
public class DefaultParameter {
@Test
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);
@@ -4767,7 +4767,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineClass")
@TestDataPath("$PROJECT_ROOT")
public class InlineClass extends AbstractFirBlackBoxInlineCodegenTest {
public class InlineClass {
@Test
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);
@@ -4789,7 +4789,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline")
@TestDataPath("$PROJECT_ROOT")
public class InlineUsedAsNoinline extends AbstractFirBlackBoxInlineCodegenTest {
public class InlineUsedAsNoinline {
@Test
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);
@@ -4823,7 +4823,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/receiver")
@TestDataPath("$PROJECT_ROOT")
public class Receiver extends AbstractFirBlackBoxInlineCodegenTest {
public class Receiver {
@Test
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);
@@ -4881,7 +4881,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/suspend/stateMachine")
@TestDataPath("$PROJECT_ROOT")
public class StateMachine extends AbstractFirBlackBoxInlineCodegenTest {
public class StateMachine {
@Test
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);
@@ -5030,7 +5030,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors")
@TestDataPath("$PROJECT_ROOT")
public class SyntheticAccessors extends AbstractFirBlackBoxInlineCodegenTest {
public class SyntheticAccessors {
@Test
public void testAllFilesPresentInSyntheticAccessors() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda")
@TestDataPath("$PROJECT_ROOT")
public class WithinInlineLambda extends AbstractFirBlackBoxInlineCodegenTest {
public class WithinInlineLambda {
@Test
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);
@@ -5152,7 +5152,7 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/trait")
@TestDataPath("$PROJECT_ROOT")
public class Trait extends AbstractFirBlackBoxInlineCodegenTest {
public class Trait {
@Test
public void testAllFilesPresentInTrait() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/tryCatchFinally")
@TestDataPath("$PROJECT_ROOT")
public class TryCatchFinally extends AbstractFirBlackBoxInlineCodegenTest {
public class TryCatchFinally {
@Test
public void testAllFilesPresentInTryCatchFinally() throws Exception {
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
@TestMetadata("compiler/testData/codegen/boxInline/varargs")
@TestDataPath("$PROJECT_ROOT")
public class Varargs extends AbstractFirBlackBoxInlineCodegenTest {
public class Varargs {
@Test
public void testAllFilesPresentInVarargs() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/argumentOrder")
@TestDataPath("$PROJECT_ROOT")
public class ArgumentOrder extends AbstractFirBytecodeTextTest {
public class ArgumentOrder {
@Test
public void testAllFilesPresentInArgumentOrder() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/assert")
@TestDataPath("$PROJECT_ROOT")
public class Assert extends AbstractFirBytecodeTextTest {
public class Assert {
@Test
public void testAllFilesPresentInAssert() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/boxing")
@TestDataPath("$PROJECT_ROOT")
public class Boxing extends AbstractFirBytecodeTextTest {
public class Boxing {
@Test
public void testAllFilesPresentInBoxing() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/boxingOptimization")
@TestDataPath("$PROJECT_ROOT")
public class BoxingOptimization extends AbstractFirBytecodeTextTest {
public class BoxingOptimization {
@Test
public void testAllFilesPresentInBoxingOptimization() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/builtinFunctions")
@TestDataPath("$PROJECT_ROOT")
public class BuiltinFunctions extends AbstractFirBytecodeTextTest {
public class BuiltinFunctions {
@Test
public void testAllFilesPresentInBuiltinFunctions() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/builtinFunctions/genericParameterBridge")
@TestDataPath("$PROJECT_ROOT")
public class GenericParameterBridge extends AbstractFirBytecodeTextTest {
public class GenericParameterBridge {
@Test
@TestMetadata("abstractList.kt")
public void testAbstractList() throws Exception {
@@ -856,7 +856,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/callableReference")
@TestDataPath("$PROJECT_ROOT")
public class CallableReference extends AbstractFirBytecodeTextTest {
public class CallableReference {
@Test
public void testAllFilesPresentInCallableReference() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/capturedVarsOptimization")
@TestDataPath("$PROJECT_ROOT")
public class CapturedVarsOptimization extends AbstractFirBytecodeTextTest {
public class CapturedVarsOptimization {
@Test
public void testAllFilesPresentInCapturedVarsOptimization() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/checkcast")
@TestDataPath("$PROJECT_ROOT")
public class Checkcast extends AbstractFirBytecodeTextTest {
public class Checkcast {
@Test
public void testAllFilesPresentInCheckcast() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/coercionToUnitOptimization")
@TestDataPath("$PROJECT_ROOT")
public class CoercionToUnitOptimization extends AbstractFirBytecodeTextTest {
public class CoercionToUnitOptimization {
@Test
public void testAllFilesPresentInCoercionToUnitOptimization() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/companion")
@TestDataPath("$PROJECT_ROOT")
public class Companion extends AbstractFirBytecodeTextTest {
public class Companion {
@Test
public void testAllFilesPresentInCompanion() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/conditions")
@TestDataPath("$PROJECT_ROOT")
public class Conditions extends AbstractFirBytecodeTextTest {
public class Conditions {
@Test
public void testAllFilesPresentInConditions() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/constProperty")
@TestDataPath("$PROJECT_ROOT")
public class ConstProperty extends AbstractFirBytecodeTextTest {
public class ConstProperty {
@Test
public void testAllFilesPresentInConstProperty() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/constantConditions")
@TestDataPath("$PROJECT_ROOT")
public class ConstantConditions extends AbstractFirBytecodeTextTest {
public class ConstantConditions {
@Test
public void testAllFilesPresentInConstantConditions() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/constants")
@TestDataPath("$PROJECT_ROOT")
public class Constants extends AbstractFirBytecodeTextTest {
public class Constants {
@Test
public void testAllFilesPresentInConstants() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/constructors")
@TestDataPath("$PROJECT_ROOT")
public class Constructors extends AbstractFirBytecodeTextTest {
public class Constructors {
@Test
public void testAllFilesPresentInConstructors() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/controlStructures")
@TestDataPath("$PROJECT_ROOT")
public class ControlStructures extends AbstractFirBytecodeTextTest {
public class ControlStructures {
@Test
public void testAllFilesPresentInControlStructures() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines")
@TestDataPath("$PROJECT_ROOT")
public class Coroutines extends AbstractFirBytecodeTextTest {
public class Coroutines {
@Test
public void testAllFilesPresentInCoroutines() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/cleanup")
@TestDataPath("$PROJECT_ROOT")
public class Cleanup extends AbstractFirBytecodeTextTest {
public class Cleanup {
@Test
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);
@@ -1753,7 +1753,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/debug")
@TestDataPath("$PROJECT_ROOT")
public class Debug extends AbstractFirBytecodeTextTest {
public class Debug {
@Test
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);
@@ -1793,7 +1793,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/destructuringInLambda")
@TestDataPath("$PROJECT_ROOT")
public class DestructuringInLambda extends AbstractFirBytecodeTextTest {
public class DestructuringInLambda {
@Test
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);
@@ -1809,7 +1809,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/inlineClasses")
@TestDataPath("$PROJECT_ROOT")
public class InlineClasses extends AbstractFirBytecodeTextTest {
public class InlineClasses {
@Test
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);
@@ -1861,7 +1861,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/intLikeVarSpilling")
@TestDataPath("$PROJECT_ROOT")
public class IntLikeVarSpilling extends AbstractFirBytecodeTextTest {
public class IntLikeVarSpilling {
@Test
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);
@@ -1931,7 +1931,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/stateMachine")
@TestDataPath("$PROJECT_ROOT")
public class StateMachine extends AbstractFirBytecodeTextTest {
public class StateMachine {
@Test
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);
@@ -1954,7 +1954,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/deadCodeElimination")
@TestDataPath("$PROJECT_ROOT")
public class DeadCodeElimination extends AbstractFirBytecodeTextTest {
public class DeadCodeElimination {
@Test
public void testAllFilesPresentInDeadCodeElimination() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/defaultArguments")
@TestDataPath("$PROJECT_ROOT")
public class DefaultArguments extends AbstractFirBytecodeTextTest {
public class DefaultArguments {
@Test
public void testAllFilesPresentInDefaultArguments() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/directInvoke")
@TestDataPath("$PROJECT_ROOT")
public class DirectInvoke extends AbstractFirBytecodeTextTest {
public class DirectInvoke {
@Test
public void testAllFilesPresentInDirectInvoke() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/disabledOptimizations")
@TestDataPath("$PROJECT_ROOT")
public class DisabledOptimizations extends AbstractFirBytecodeTextTest {
public class DisabledOptimizations {
@Test
public void testAllFilesPresentInDisabledOptimizations() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/enum")
@TestDataPath("$PROJECT_ROOT")
public class Enum extends AbstractFirBytecodeTextTest {
public class Enum {
@Test
public void testAllFilesPresentInEnum() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/exclExcl")
@TestDataPath("$PROJECT_ROOT")
public class ExclExcl extends AbstractFirBytecodeTextTest {
public class ExclExcl {
@Test
public void testAllFilesPresentInExclExcl() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/fieldsForCapturedValues")
@TestDataPath("$PROJECT_ROOT")
public class FieldsForCapturedValues extends AbstractFirBytecodeTextTest {
public class FieldsForCapturedValues {
@Test
public void testAllFilesPresentInFieldsForCapturedValues() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop")
@TestDataPath("$PROJECT_ROOT")
public class ForLoop extends AbstractFirBytecodeTextTest {
public class ForLoop {
@Test
public void testAllFilesPresentInForLoop() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInArrayWithIndex")
@TestDataPath("$PROJECT_ROOT")
public class ForInArrayWithIndex extends AbstractFirBytecodeTextTest {
public class ForInArrayWithIndex {
@Test
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);
@@ -2487,7 +2487,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInCharSequenceWithIndex")
@TestDataPath("$PROJECT_ROOT")
public class ForInCharSequenceWithIndex extends AbstractFirBytecodeTextTest {
public class ForInCharSequenceWithIndex {
@Test
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);
@@ -2533,7 +2533,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInIndices")
@TestDataPath("$PROJECT_ROOT")
public class ForInIndices extends AbstractFirBytecodeTextTest {
public class ForInIndices {
@Test
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);
@@ -2597,7 +2597,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInIterableWithIndex")
@TestDataPath("$PROJECT_ROOT")
public class ForInIterableWithIndex extends AbstractFirBytecodeTextTest {
public class ForInIterableWithIndex {
@Test
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);
@@ -2643,7 +2643,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInProgressionWithIndex")
@TestDataPath("$PROJECT_ROOT")
public class ForInProgressionWithIndex extends AbstractFirBytecodeTextTest {
public class ForInProgressionWithIndex {
@Test
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);
@@ -2725,7 +2725,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInReversed")
@TestDataPath("$PROJECT_ROOT")
public class ForInReversed extends AbstractFirBytecodeTextTest {
public class ForInReversed {
@Test
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);
@@ -2813,7 +2813,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInSequenceWithIndex")
@TestDataPath("$PROJECT_ROOT")
public class ForInSequenceWithIndex extends AbstractFirBytecodeTextTest {
public class ForInSequenceWithIndex {
@Test
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);
@@ -2865,7 +2865,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/forInUntil")
@TestDataPath("$PROJECT_ROOT")
public class ForInUntil extends AbstractFirBytecodeTextTest {
public class ForInUntil {
@Test
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);
@@ -2929,7 +2929,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/stepped")
@TestDataPath("$PROJECT_ROOT")
public class Stepped extends AbstractFirBytecodeTextTest {
public class Stepped {
@Test
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);
@@ -3023,7 +3023,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/forLoop/unsigned")
@TestDataPath("$PROJECT_ROOT")
public class Unsigned extends AbstractFirBytecodeTextTest {
public class Unsigned {
@Test
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);
@@ -3124,7 +3124,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/hashCode")
@TestDataPath("$PROJECT_ROOT")
public class HashCode extends AbstractFirBytecodeTextTest {
public class HashCode {
@Test
public void testAllFilesPresentInHashCode() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/ieee754")
@TestDataPath("$PROJECT_ROOT")
public class Ieee754 extends AbstractFirBytecodeTextTest {
public class Ieee754 {
@Test
public void testAllFilesPresentInIeee754() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/inline")
@TestDataPath("$PROJECT_ROOT")
public class Inline extends AbstractFirBytecodeTextTest {
public class Inline {
@Test
public void testAllFilesPresentInInline() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/inline/property")
@TestDataPath("$PROJECT_ROOT")
public class Property extends AbstractFirBytecodeTextTest {
public class Property {
@Test
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);
@@ -3344,7 +3344,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/inlineClasses")
@TestDataPath("$PROJECT_ROOT")
public class InlineClasses extends AbstractFirBytecodeTextTest {
public class InlineClasses {
@Test
public void testAllFilesPresentInInlineClasses() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/innerClasses")
@TestDataPath("$PROJECT_ROOT")
public class InnerClasses extends AbstractFirBytecodeTextTest {
public class InnerClasses {
@Test
public void testAllFilesPresentInInnerClasses() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/interfaces")
@TestDataPath("$PROJECT_ROOT")
public class Interfaces extends AbstractFirBytecodeTextTest {
public class Interfaces {
@Test
@TestMetadata("addedInterfaceBridge.kt")
public void testAddedInterfaceBridge() throws Exception {
@@ -3812,7 +3812,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/intrinsics")
@TestDataPath("$PROJECT_ROOT")
public class Intrinsics extends AbstractFirBytecodeTextTest {
public class Intrinsics {
@Test
public void testAllFilesPresentInIntrinsics() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/intrinsicsCompare")
@TestDataPath("$PROJECT_ROOT")
public class IntrinsicsCompare extends AbstractFirBytecodeTextTest {
public class IntrinsicsCompare {
@Test
public void testAllFilesPresentInIntrinsicsCompare() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/intrinsicsTrim")
@TestDataPath("$PROJECT_ROOT")
public class IntrinsicsTrim extends AbstractFirBytecodeTextTest {
public class IntrinsicsTrim {
@Test
public void testAllFilesPresentInIntrinsicsTrim() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/invokedynamic")
@TestDataPath("$PROJECT_ROOT")
public class Invokedynamic extends AbstractFirBytecodeTextTest {
public class Invokedynamic {
@Test
public void testAllFilesPresentInInvokedynamic() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/jvm8")
@TestDataPath("$PROJECT_ROOT")
public class Jvm8 extends AbstractFirBytecodeTextTest {
public class Jvm8 {
@Test
public void testAllFilesPresentInJvm8() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/hashCode")
@TestDataPath("$PROJECT_ROOT")
public class HashCode extends AbstractFirBytecodeTextTest {
public class HashCode {
@Test
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);
@@ -3985,7 +3985,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault")
@TestDataPath("$PROJECT_ROOT")
public class JvmDefault extends AbstractFirBytecodeTextTest {
public class JvmDefault {
@Test
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);
@@ -3994,7 +3994,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/allCompatibility")
@TestDataPath("$PROJECT_ROOT")
public class AllCompatibility extends AbstractFirBytecodeTextTest {
public class AllCompatibility {
@Test
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);
@@ -4034,7 +4034,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/jvm8/jvmDefault/compatibility")
@TestDataPath("$PROJECT_ROOT")
public class Compatibility extends AbstractFirBytecodeTextTest {
public class Compatibility {
@Test
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);
@@ -4076,7 +4076,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/lazyCodegen")
@TestDataPath("$PROJECT_ROOT")
public class LazyCodegen extends AbstractFirBytecodeTextTest {
public class LazyCodegen {
@Test
public void testAllFilesPresentInLazyCodegen() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/lineNumbers")
@TestDataPath("$PROJECT_ROOT")
public class LineNumbers extends AbstractFirBytecodeTextTest {
public class LineNumbers {
@Test
public void testAllFilesPresentInLineNumbers() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/localInitializationLVT")
@TestDataPath("$PROJECT_ROOT")
public class LocalInitializationLVT extends AbstractFirBytecodeTextTest {
public class LocalInitializationLVT {
@Test
public void testAllFilesPresentInLocalInitializationLVT() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/mangling")
@TestDataPath("$PROJECT_ROOT")
public class Mangling extends AbstractFirBytecodeTextTest {
public class Mangling {
@Test
public void testAllFilesPresentInMangling() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/multifileClasses")
@TestDataPath("$PROJECT_ROOT")
public class MultifileClasses extends AbstractFirBytecodeTextTest {
public class MultifileClasses {
@Test
public void testAllFilesPresentInMultifileClasses() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/notNullAssertions")
@TestDataPath("$PROJECT_ROOT")
public class NotNullAssertions extends AbstractFirBytecodeTextTest {
public class NotNullAssertions {
@Test
public void testAllFilesPresentInNotNullAssertions() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/nullCheckOptimization")
@TestDataPath("$PROJECT_ROOT")
public class NullCheckOptimization extends AbstractFirBytecodeTextTest {
public class NullCheckOptimization {
@Test
public void testAllFilesPresentInNullCheckOptimization() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/nullCheckOptimization/localLateinit")
@TestDataPath("$PROJECT_ROOT")
public class LocalLateinit extends AbstractFirBytecodeTextTest {
public class LocalLateinit {
@Test
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);
@@ -4636,7 +4636,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/optimizedDelegatedProperties")
@TestDataPath("$PROJECT_ROOT")
public class OptimizedDelegatedProperties extends AbstractFirBytecodeTextTest {
public class OptimizedDelegatedProperties {
@Test
public void testAllFilesPresentInOptimizedDelegatedProperties() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/parameterlessMain")
@TestDataPath("$PROJECT_ROOT")
public class ParameterlessMain extends AbstractFirBytecodeTextTest {
public class ParameterlessMain {
@Test
public void testAllFilesPresentInParameterlessMain() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/properties")
@TestDataPath("$PROJECT_ROOT")
public class Properties extends AbstractFirBytecodeTextTest {
public class Properties {
@Test
public void testAllFilesPresentInProperties() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/properties/lateinit")
@TestDataPath("$PROJECT_ROOT")
public class Lateinit extends AbstractFirBytecodeTextTest {
public class Lateinit {
@Test
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);
@@ -4766,7 +4766,7 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
@Nested
@TestMetadata("compiler/testData/codegen/bytecodeText/ranges")
@TestDataPath("$PROJECT_ROOT")
public class Ranges extends AbstractFirBytecodeTextTest {
public class Ranges {
@Test
public void testAllFilesPresentInRanges() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/sam")
@TestDataPath("$PROJECT_ROOT")
public class Sam extends AbstractFirBytecodeTextTest {
public class Sam {
@Test
public void testAllFilesPresentInSam() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/statements")
@TestDataPath("$PROJECT_ROOT")
public class Statements extends AbstractFirBytecodeTextTest {
public class Statements {
@Test
public void testAllFilesPresentInStatements() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/staticFields")
@TestDataPath("$PROJECT_ROOT")
public class StaticFields extends AbstractFirBytecodeTextTest {
public class StaticFields {
@Test
public void testAllFilesPresentInStaticFields() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/storeStackBeforeInline")
@TestDataPath("$PROJECT_ROOT")
public class StoreStackBeforeInline extends AbstractFirBytecodeTextTest {
public class StoreStackBeforeInline {
@Test
public void testAllFilesPresentInStoreStackBeforeInline() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/stringOperations")
@TestDataPath("$PROJECT_ROOT")
public class StringOperations extends AbstractFirBytecodeTextTest {
public class StringOperations {
@Test
public void testAllFilesPresentInStringOperations() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/toArray")
@TestDataPath("$PROJECT_ROOT")
public class ToArray extends AbstractFirBytecodeTextTest {
public class ToArray {
@Test
public void testAllFilesPresentInToArray() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/unsignedTypes")
@TestDataPath("$PROJECT_ROOT")
public class UnsignedTypes extends AbstractFirBytecodeTextTest {
public class UnsignedTypes {
@Test
public void testAllFilesPresentInUnsignedTypes() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/varargs")
@TestDataPath("$PROJECT_ROOT")
public class Varargs extends AbstractFirBytecodeTextTest {
public class Varargs {
@Test
public void testAllFilesPresentInVarargs() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/when")
@TestDataPath("$PROJECT_ROOT")
public class When extends AbstractFirBytecodeTextTest {
public class When {
@Test
public void testAllFilesPresentInWhen() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/whenEnumOptimization")
@TestDataPath("$PROJECT_ROOT")
public class WhenEnumOptimization extends AbstractFirBytecodeTextTest {
public class WhenEnumOptimization {
@Test
public void testAllFilesPresentInWhenEnumOptimization() throws Exception {
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
@TestMetadata("compiler/testData/codegen/bytecodeText/whenStringOptimization")
@TestDataPath("$PROJECT_ROOT")
public class WhenStringOptimization extends AbstractFirBytecodeTextTest {
public class WhenStringOptimization {
@Test
public void testAllFilesPresentInWhenStringOptimization() throws Exception {
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
@TestMetadata("compiler/testData/ir/irText/classes")
@TestDataPath("$PROJECT_ROOT")
public class Classes extends AbstractFir2IrTextTest {
public class Classes {
@Test
@TestMetadata("abstractMembers.kt")
public void testAbstractMembers() throws Exception {
@@ -326,7 +326,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested
@TestMetadata("compiler/testData/ir/irText/declarations")
@TestDataPath("$PROJECT_ROOT")
public class Declarations extends AbstractFir2IrTextTest {
public class Declarations {
@Test
public void testAllFilesPresentInDeclarations() throws Exception {
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
@TestMetadata("compiler/testData/ir/irText/declarations/annotations")
@TestDataPath("$PROJECT_ROOT")
public class Annotations extends AbstractFir2IrTextTest {
public class Annotations {
@Test
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);
@@ -675,7 +675,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested
@TestMetadata("compiler/testData/ir/irText/declarations/multiplatform")
@TestDataPath("$PROJECT_ROOT")
public class Multiplatform extends AbstractFir2IrTextTest {
public class Multiplatform {
@Test
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);
@@ -703,7 +703,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested
@TestMetadata("compiler/testData/ir/irText/declarations/parameters")
@TestDataPath("$PROJECT_ROOT")
public class Parameters extends AbstractFir2IrTextTest {
public class Parameters {
@Test
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);
@@ -791,7 +791,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested
@TestMetadata("compiler/testData/ir/irText/declarations/provideDelegate")
@TestDataPath("$PROJECT_ROOT")
public class ProvideDelegate extends AbstractFir2IrTextTest {
public class ProvideDelegate {
@Test
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);
@@ -838,7 +838,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested
@TestMetadata("compiler/testData/ir/irText/errors")
@TestDataPath("$PROJECT_ROOT")
public class Errors extends AbstractFir2IrTextTest {
public class Errors {
@Test
public void testAllFilesPresentInErrors() throws Exception {
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
@TestMetadata("compiler/testData/ir/irText/expressions")
@TestDataPath("$PROJECT_ROOT")
public class Expressions extends AbstractFir2IrTextTest {
public class Expressions {
@Test
public void testAllFilesPresentInExpressions() throws Exception {
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
@TestMetadata("compiler/testData/ir/irText/expressions/callableReferences")
@TestDataPath("$PROJECT_ROOT")
public class CallableReferences extends AbstractFir2IrTextTest {
public class CallableReferences {
@Test
@TestMetadata("adaptedExtensionFunctions.kt")
public void testAdaptedExtensionFunctions() throws Exception {
@@ -1839,7 +1839,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested
@TestMetadata("compiler/testData/ir/irText/expressions/floatingPointComparisons")
@TestDataPath("$PROJECT_ROOT")
public class FloatingPointComparisons extends AbstractFir2IrTextTest {
public class FloatingPointComparisons {
@Test
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);
@@ -1915,7 +1915,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested
@TestMetadata("compiler/testData/ir/irText/expressions/funInterface")
@TestDataPath("$PROJECT_ROOT")
public class FunInterface extends AbstractFir2IrTextTest {
public class FunInterface {
@Test
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);
@@ -1973,7 +1973,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested
@TestMetadata("compiler/testData/ir/irText/expressions/sam")
@TestDataPath("$PROJECT_ROOT")
public class Sam extends AbstractFir2IrTextTest {
public class Sam {
@Test
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);
@@ -2050,7 +2050,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested
@TestMetadata("compiler/testData/ir/irText/firProblems")
@TestDataPath("$PROJECT_ROOT")
public class FirProblems extends AbstractFir2IrTextTest {
public class FirProblems {
@Test
@TestMetadata("AbstractMutableMap.kt")
public void testAbstractMutableMap() throws Exception {
@@ -2240,7 +2240,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested
@TestMetadata("compiler/testData/ir/irText/lambdas")
@TestDataPath("$PROJECT_ROOT")
public class Lambdas extends AbstractFir2IrTextTest {
public class Lambdas {
@Test
public void testAllFilesPresentInLambdas() throws Exception {
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
@TestMetadata("compiler/testData/ir/irText/regressions")
@TestDataPath("$PROJECT_ROOT")
public class Regressions extends AbstractFir2IrTextTest {
public class Regressions {
@Test
public void testAllFilesPresentInRegressions() throws Exception {
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
@TestMetadata("compiler/testData/ir/irText/regressions/newInference")
@TestDataPath("$PROJECT_ROOT")
public class NewInference extends AbstractFir2IrTextTest {
public class NewInference {
@Test
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);
@@ -2354,7 +2354,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested
@TestMetadata("compiler/testData/ir/irText/singletons")
@TestDataPath("$PROJECT_ROOT")
public class Singletons extends AbstractFir2IrTextTest {
public class Singletons {
@Test
public void testAllFilesPresentInSingletons() throws Exception {
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
@TestMetadata("compiler/testData/ir/irText/stubs")
@TestDataPath("$PROJECT_ROOT")
public class Stubs extends AbstractFir2IrTextTest {
public class Stubs {
@Test
public void testAllFilesPresentInStubs() throws Exception {
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
@TestMetadata("compiler/testData/ir/irText/types")
@TestDataPath("$PROJECT_ROOT")
public class Types extends AbstractFir2IrTextTest {
public class Types {
@Test
@TestMetadata("abbreviatedTypes.kt")
public void testAbbreviatedTypes() throws Exception {
@@ -2623,7 +2623,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested
@TestMetadata("compiler/testData/ir/irText/types/nullChecks")
@TestDataPath("$PROJECT_ROOT")
public class NullChecks extends AbstractFir2IrTextTest {
public class NullChecks {
@Test
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);
@@ -2674,7 +2674,7 @@ public class Fir2IrTextTestGenerated extends AbstractFir2IrTextTest {
@Nested
@TestMetadata("compiler/testData/ir/irText/types/nullChecks/nullCheckOnLambdaResult")
@TestDataPath("$PROJECT_ROOT")
public class NullCheckOnLambdaResult extends AbstractFir2IrTextTest {
public class NullCheckOnLambdaResult {
@Test
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);