Secondary constructors resolve

This commit is contained in:
Denis Zharkov
2015-02-02 12:44:32 +03:00
parent 8305d73682
commit b2cecf1dd0
38 changed files with 655 additions and 5 deletions
@@ -86,6 +86,7 @@ public class JetDiagnosticsTestGenerated extends AbstractJetDiagnosticsTest {
Tests.Regressions.class,
Tests.Resolve.class,
Tests.Scopes.class,
Tests.SecondaryConstructors.class,
Tests.SenselessComparison.class,
Tests.Shadowing.class,
Tests.SmartCasts.class,
@@ -10388,6 +10389,27 @@ public class JetDiagnosticsTestGenerated extends AbstractJetDiagnosticsTest {
}
}
@TestMetadata("compiler/testData/diagnostics/tests/secondaryConstructors")
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)
public static class SecondaryConstructors extends AbstractJetDiagnosticsTest {
public void testAllFilesPresentInSecondaryConstructors() throws Exception {
JetTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("compiler/testData/diagnostics/tests/secondaryConstructors"), Pattern.compile("^(.+)\\.kt$"), true);
}
@TestMetadata("constructorCallType.kt")
public void testConstructorCallType() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/diagnostics/tests/secondaryConstructors/constructorCallType.kt");
doTest(fileName);
}
@TestMetadata("noPrimaryConstructor.kt")
public void testNoPrimaryConstructor() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/diagnostics/tests/secondaryConstructors/noPrimaryConstructor.kt");
doTest(fileName);
}
}
@TestMetadata("compiler/testData/diagnostics/tests/senselessComparison")
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)
@@ -39,6 +39,7 @@ import java.util.regex.Pattern;
ResolvedCallsTestGenerated.ObjectsAndClassObjects.class,
ResolvedCallsTestGenerated.RealExamples.class,
ResolvedCallsTestGenerated.Resolve.class,
ResolvedCallsTestGenerated.SecondaryConstructors.class,
ResolvedCallsTestGenerated.ThisOrSuper.class,
})
@RunWith(JUnit3RunnerWithInners.class)
@@ -529,6 +530,99 @@ public class ResolvedCallsTestGenerated extends AbstractResolvedCallsTest {
}
}
@TestMetadata("compiler/testData/resolvedCalls/secondaryConstructors")
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)
public static class SecondaryConstructors extends AbstractResolvedCallsTest {
public void testAllFilesPresentInSecondaryConstructors() throws Exception {
JetTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("compiler/testData/resolvedCalls/secondaryConstructors"), Pattern.compile("^(.+)\\.kt$"), true);
}
@TestMetadata("classWithGenerics.kt")
public void testClassWithGenerics() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/resolvedCalls/secondaryConstructors/classWithGenerics.kt");
doTest(fileName);
}
@TestMetadata("classWithGenerics2.kt")
public void testClassWithGenerics2() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/resolvedCalls/secondaryConstructors/classWithGenerics2.kt");
doTest(fileName);
}
@TestMetadata("classWithGenerics3.kt")
public void testClassWithGenerics3() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/resolvedCalls/secondaryConstructors/classWithGenerics3.kt");
doTest(fileName);
}
@TestMetadata("explicitPrimaryArgs.kt")
public void testExplicitPrimaryArgs() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/resolvedCalls/secondaryConstructors/explicitPrimaryArgs.kt");
doTest(fileName);
}
@TestMetadata("explicitPrimaryCallSecondary.kt")
public void testExplicitPrimaryCallSecondary() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/resolvedCalls/secondaryConstructors/explicitPrimaryCallSecondary.kt");
doTest(fileName);
}
@TestMetadata("explicitPrimaryNoArgs.kt")
public void testExplicitPrimaryNoArgs() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/resolvedCalls/secondaryConstructors/explicitPrimaryNoArgs.kt");
doTest(fileName);
}
@TestMetadata("implicitPrimary.kt")
public void testImplicitPrimary() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/resolvedCalls/secondaryConstructors/implicitPrimary.kt");
doTest(fileName);
}
@TestMetadata("overload1.kt")
public void testOverload1() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/resolvedCalls/secondaryConstructors/overload1.kt");
doTest(fileName);
}
@TestMetadata("overload2.kt")
public void testOverload2() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/resolvedCalls/secondaryConstructors/overload2.kt");
doTest(fileName);
}
@TestMetadata("overload3.kt")
public void testOverload3() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/resolvedCalls/secondaryConstructors/overload3.kt");
doTest(fileName);
}
@TestMetadata("overloadDefault.kt")
public void testOverloadDefault() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/resolvedCalls/secondaryConstructors/overloadDefault.kt");
doTest(fileName);
}
@TestMetadata("overloadNamed.kt")
public void testOverloadNamed() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/resolvedCalls/secondaryConstructors/overloadNamed.kt");
doTest(fileName);
}
@TestMetadata("simple.kt")
public void testSimple() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/resolvedCalls/secondaryConstructors/simple.kt");
doTest(fileName);
}
@TestMetadata("varargs.kt")
public void testVarargs() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/resolvedCalls/secondaryConstructors/varargs.kt");
doTest(fileName);
}
}
@TestMetadata("compiler/testData/resolvedCalls/thisOrSuper")
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)