[FIR-TEST] Move stdlib tests for delegates to separate directory
This commit is contained in:
Generated
+38
-25
@@ -33,11 +33,6 @@ public class FirDiagnosticsWithStdlibTestGenerated extends AbstractFirDiagnostic
|
|||||||
KotlinTestUtils.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/resolve/testData/resolveWithStdlib"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
|
KotlinTestUtils.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/resolve/testData/resolveWithStdlib"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@TestMetadata("anonymousInDelegate.kt")
|
|
||||||
public void testAnonymousInDelegate() throws Exception {
|
|
||||||
runTest("compiler/fir/resolve/testData/resolveWithStdlib/anonymousInDelegate.kt");
|
|
||||||
}
|
|
||||||
|
|
||||||
@TestMetadata("arrayFilterCapturedType.kt")
|
@TestMetadata("arrayFilterCapturedType.kt")
|
||||||
public void testArrayFilterCapturedType() throws Exception {
|
public void testArrayFilterCapturedType() throws Exception {
|
||||||
runTest("compiler/fir/resolve/testData/resolveWithStdlib/arrayFilterCapturedType.kt");
|
runTest("compiler/fir/resolve/testData/resolveWithStdlib/arrayFilterCapturedType.kt");
|
||||||
@@ -88,16 +83,6 @@ public class FirDiagnosticsWithStdlibTestGenerated extends AbstractFirDiagnostic
|
|||||||
runTest("compiler/fir/resolve/testData/resolveWithStdlib/concurrentMapOfAliases.kt");
|
runTest("compiler/fir/resolve/testData/resolveWithStdlib/concurrentMapOfAliases.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
@TestMetadata("delegateTypeMismatch.kt")
|
|
||||||
public void testDelegateTypeMismatch() throws Exception {
|
|
||||||
runTest("compiler/fir/resolve/testData/resolveWithStdlib/delegateTypeMismatch.kt");
|
|
||||||
}
|
|
||||||
|
|
||||||
@TestMetadata("delegateWithAnonymousObject.kt")
|
|
||||||
public void testDelegateWithAnonymousObject() throws Exception {
|
|
||||||
runTest("compiler/fir/resolve/testData/resolveWithStdlib/delegateWithAnonymousObject.kt");
|
|
||||||
}
|
|
||||||
|
|
||||||
@TestMetadata("emptyArray.kt")
|
@TestMetadata("emptyArray.kt")
|
||||||
public void testEmptyArray() throws Exception {
|
public void testEmptyArray() throws Exception {
|
||||||
runTest("compiler/fir/resolve/testData/resolveWithStdlib/emptyArray.kt");
|
runTest("compiler/fir/resolve/testData/resolveWithStdlib/emptyArray.kt");
|
||||||
@@ -238,16 +223,6 @@ public class FirDiagnosticsWithStdlibTestGenerated extends AbstractFirDiagnostic
|
|||||||
runTest("compiler/fir/resolve/testData/resolveWithStdlib/runOnIntegerLiteral.kt");
|
runTest("compiler/fir/resolve/testData/resolveWithStdlib/runOnIntegerLiteral.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
@TestMetadata("simpleDelegateProvider.kt")
|
|
||||||
public void testSimpleDelegateProvider() throws Exception {
|
|
||||||
runTest("compiler/fir/resolve/testData/resolveWithStdlib/simpleDelegateProvider.kt");
|
|
||||||
}
|
|
||||||
|
|
||||||
@TestMetadata("simpleDelegatedToMap.kt")
|
|
||||||
public void testSimpleDelegatedToMap() throws Exception {
|
|
||||||
runTest("compiler/fir/resolve/testData/resolveWithStdlib/simpleDelegatedToMap.kt");
|
|
||||||
}
|
|
||||||
|
|
||||||
@TestMetadata("simpleLazy.kt")
|
@TestMetadata("simpleLazy.kt")
|
||||||
public void testSimpleLazy() throws Exception {
|
public void testSimpleLazy() throws Exception {
|
||||||
runTest("compiler/fir/resolve/testData/resolveWithStdlib/simpleLazy.kt");
|
runTest("compiler/fir/resolve/testData/resolveWithStdlib/simpleLazy.kt");
|
||||||
@@ -517,6 +492,44 @@ public class FirDiagnosticsWithStdlibTestGenerated extends AbstractFirDiagnostic
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@TestMetadata("compiler/fir/resolve/testData/resolveWithStdlib/delegates")
|
||||||
|
@TestDataPath("$PROJECT_ROOT")
|
||||||
|
@RunWith(JUnit3RunnerWithInners.class)
|
||||||
|
public static class Delegates extends AbstractFirDiagnosticsWithStdlibTest {
|
||||||
|
private void runTest(String testDataFilePath) throws Exception {
|
||||||
|
KotlinTestUtils.runTest(this::doTest, this, testDataFilePath);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void testAllFilesPresentInDelegates() throws Exception {
|
||||||
|
KotlinTestUtils.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/fir/resolve/testData/resolveWithStdlib/delegates"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("anonymousInDelegate.kt")
|
||||||
|
public void testAnonymousInDelegate() throws Exception {
|
||||||
|
runTest("compiler/fir/resolve/testData/resolveWithStdlib/delegates/anonymousInDelegate.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("delegateTypeMismatch.kt")
|
||||||
|
public void testDelegateTypeMismatch() throws Exception {
|
||||||
|
runTest("compiler/fir/resolve/testData/resolveWithStdlib/delegates/delegateTypeMismatch.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("delegateWithAnonymousObject.kt")
|
||||||
|
public void testDelegateWithAnonymousObject() throws Exception {
|
||||||
|
runTest("compiler/fir/resolve/testData/resolveWithStdlib/delegates/delegateWithAnonymousObject.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("simpleDelegateProvider.kt")
|
||||||
|
public void testSimpleDelegateProvider() throws Exception {
|
||||||
|
runTest("compiler/fir/resolve/testData/resolveWithStdlib/delegates/simpleDelegateProvider.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("simpleDelegatedToMap.kt")
|
||||||
|
public void testSimpleDelegatedToMap() throws Exception {
|
||||||
|
runTest("compiler/fir/resolve/testData/resolveWithStdlib/delegates/simpleDelegatedToMap.kt");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@TestMetadata("compiler/fir/resolve/testData/resolveWithStdlib/inference")
|
@TestMetadata("compiler/fir/resolve/testData/resolveWithStdlib/inference")
|
||||||
@TestDataPath("$PROJECT_ROOT")
|
@TestDataPath("$PROJECT_ROOT")
|
||||||
@RunWith(JUnit3RunnerWithInners.class)
|
@RunWith(JUnit3RunnerWithInners.class)
|
||||||
|
|||||||
Reference in New Issue
Block a user