Test data fixed

This commit is contained in:
Roman Shevchenko
2010-08-12 22:23:50 +04:00
parent 385d87967d
commit bd11cd8213

View File

@@ -18,9 +18,12 @@ public class KeywordCompletionTest extends LightCompletionTestCase {
return JavaTestUtil.getJavaTestDataPath();
}
private static final String[] ourPackageScopeKeywords =
new String[]{"package", "public", "private", "import", "final", "class", "interface", "abstract", "enum", null};
public void testModifiersFileScope_1() throws Exception {
configureByFile(BASE_PATH + "/fileScope-1.java");
testByCount(7, "package", "public", "private", "import", "final", "class", "interface", "abstract", null);
testByCount(8, ourPackageScopeKeywords);
}
private static final String[] ourClassScopeKeywords =