1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-02-25 11:46:02 +01:00

Revert "Unified tests initialization for IntelliJ 13+ Community and Ultimate"

This reverts commit 296ef1bdf9.
This commit is contained in:
Andrey Vlasovskikh 2014-11-28 22:29:15 +03:00
parent 1c7cd23475
commit 26a247c0bf
2 changed files with 6 additions and 3 deletions
README.md
test/org/jetbrains/plugins/ideavim

View File

@ -164,8 +164,8 @@ in the issue tracker.
6. Build IdeaVim and run IntelliJ with IdeaVim enabled using the "IdeaVim" run
configuration (use "Run | Run... | IdeaVim").
7. Build IdeaVim and run the tests using "All tests" run configuration (use
"Run | Run... | All Tests").
7. In order to be able to run tests in your IntelliJ edition uncomment the
appropriate lines in the constructor of the `VimTestCase` class.
Authors

View File

@ -38,7 +38,10 @@ public abstract class VimTestCase extends UsefulTestCase {
protected CodeInsightTestFixture myFixture;
public VimTestCase() {
PlatformTestCase.initPlatformPrefix(ULTIMATE_MARKER_CLASS, "PlatformLangXml");
// Only in IntelliJ IDEA Ultimate Edition
PlatformTestCase.initPlatformLangPrefix();
// XXX: IntelliJ IDEA Community and Ultimate 12+
//PlatformTestCase.initPlatformPrefix(ULTIMATE_MARKER_CLASS, "PlatformLangXml");
}
@Override