[FIX] Move backing field bytecodeListing tests to a separate folder

This commit is contained in:
Nikolay Lunyak
2021-09-14 18:27:39 +03:00
parent 54067628ff
commit ba8dc49a31
10 changed files with 52 additions and 6 deletions
@@ -5541,6 +5541,12 @@ public class DiagnosisCompilerFirTestdataTestGenerated extends AbstractDiagnosis
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/analysis-tests/testData/resolveWithStdlib/properties"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
}
@Test
@TestMetadata("explicitBackingFieldUnsupported.kt")
public void testExplicitBackingFieldUnsupported() throws Exception {
runTest("compiler/fir/analysis-tests/testData/resolveWithStdlib/properties/explicitBackingFieldUnsupported.kt");
}
@Nested
@TestMetadata("compiler/fir/analysis-tests/testData/resolveWithStdlib/properties/backingField")
@TestDataPath("$PROJECT_ROOT")