Renamed test methods.

This commit is contained in:
Evgeny Gerashchenko
2012-12-20 19:26:52 +04:00
parent e49459f2cd
commit 2daf9a10d0
3 changed files with 313 additions and 313 deletions
@@ -42,11 +42,11 @@ public abstract class AbstractLazyResolveNamespaceComparingTest extends KotlinTe
return createEnvironmentWithMockJdk(ConfigurationKind.JDK_AND_ANNOTATIONS); return createEnvironmentWithMockJdk(ConfigurationKind.JDK_AND_ANNOTATIONS);
} }
protected void doTestCheckingConstructors(String testFileName) throws IOException { protected void doTestCheckingPrimaryConstructors(String testFileName) throws IOException {
doTest(testFileName, true); doTest(testFileName, true);
} }
protected void doTestNotCheckingConstructors(String testFileName) throws IOException { protected void doTestNotCheckingPrimaryConstructors(String testFileName) throws IOException {
doTest(testFileName, false); doTest(testFileName, false);
} }
@@ -172,9 +172,9 @@ public class GenerateTests {
"compiler/tests/", "compiler/tests/",
"LazyResolveNamespaceComparingTestGenerated", "LazyResolveNamespaceComparingTestGenerated",
AbstractLazyResolveNamespaceComparingTest.class, AbstractLazyResolveNamespaceComparingTest.class,
testModel("compiler/testData/loadKotlin", "doTestCheckingConstructors"), testModel("compiler/testData/loadKotlin", "doTestCheckingPrimaryConstructors"),
testModel("compiler/testData/loadJava", "doTestNotCheckingConstructors"), testModel("compiler/testData/loadJava", "doTestNotCheckingPrimaryConstructors"),
testModel("compiler/testData/lazyResolve/namespaceComparator", "doTestCheckingConstructors") testModel("compiler/testData/lazyResolve/namespaceComparator", "doTestCheckingPrimaryConstructors")
); );
generateTest( generateTest(