better method name

This commit is contained in:
Stepan Koltsov
2012-05-03 18:30:38 +04:00
parent fcee8a4133
commit f4527b8167
42 changed files with 181 additions and 191 deletions
@@ -40,7 +40,7 @@ public abstract class TestWithEnvironment extends UsefulTestCase {
@Override
protected void setUp() throws Exception {
super.setUp();
createEnvironmentWithMockJdk();
createEnvironmentWithMockJdkAndIdeaAnnotations();
}
@Override
@@ -49,7 +49,7 @@ public abstract class TestWithEnvironment extends UsefulTestCase {
super.tearDown();
}
protected void createEnvironmentWithMockJdk() {
myEnvironment = JetTestUtils.createEnvironmentWithMockJdk(getTestRootDisposable());
protected void createEnvironmentWithMockJdkAndIdeaAnnotations() {
myEnvironment = JetTestUtils.createEnvironmentWithMockJdkAndIdeaAnnotations(getTestRootDisposable());
}
}