本文整理汇总了Java中com.intellij.testFramework.PlatformTestCase.initPlatformLangPrefix方法的典型用法代码示例。如果您正苦于以下问题:Java PlatformTestCase.initPlatformLangPrefix方法的具体用法?Java PlatformTestCase.initPlatformLangPrefix怎么用?Java PlatformTestCase.initPlatformLangPrefix使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.testFramework.PlatformTestCase
的用法示例。
在下文中一共展示了PlatformTestCase.initPlatformLangPrefix方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setUp
import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
@Override
public void setUp() throws Exception {
PlatformTestCase.initPlatformLangPrefix();
super.setUp();
myModule = context.mock(Module.class, "myModule");
context.checking(new Expectations() {{
allowing(myModule).getName(); will(returnValue("my-module"));
}});
myManager = new ModuleRunConfigurationManager(myModule, new MyRunManagerImpl());
mySettings = createSettings("my-module-run", new MyModuleBasedConfiguration("my-module-run-config", getProject(), myModule));
final List<? extends RunnerAndConfigurationSettings> configs = ContainerUtil.newArrayList(
createSettings("other-run", context.mock(RunConfiguration.class, "other-run-run-config")),
createSettings("other-module-run", new MyModuleBasedConfiguration("other-module-run-config", getProject(), getModule())),
mySettings
);
myConfigurations = Collections.unmodifiableCollection(configs);
}
示例2: SpellcheckerInspectionTestCase
import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
@SuppressWarnings("JUnitTestCaseWithNonTrivialConstructors")
protected SpellcheckerInspectionTestCase() {
PlatformTestCase.initPlatformLangPrefix();
}
示例3: SMLightFixtureTestCase
import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
protected SMLightFixtureTestCase() {
PlatformTestCase.initPlatformLangPrefix();
}
示例4: XmlPropertiesIndexTest
import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
public XmlPropertiesIndexTest() {
PlatformTestCase.initPlatformLangPrefix();
}
示例5: PropertiesLexerTest
import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
public PropertiesLexerTest() {
PlatformTestCase.initPlatformLangPrefix();
}
示例6: RemotelyConfigurableStatServiceTest
import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
@SuppressWarnings("JUnitTestCaseWithNonTrivialConstructors")
public RemotelyConfigurableStatServiceTest() {
PlatformTestCase.initPlatformLangPrefix();
}
示例7: HaxeGenerateActionTest
import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
@SuppressWarnings("JUnitTestCaseWithNonTrivialConstructors")
public HaxeGenerateActionTest() {
PlatformTestCase.initPlatformLangPrefix();
}
示例8: TestBase
import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
protected TestBase() {
PlatformTestCase.initPlatformLangPrefix();
}
示例9: HaxeCodeInsightFixtureTestCase
import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
@SuppressWarnings("JUnitTestCaseWithNonTrivialConstructors")
protected HaxeCodeInsightFixtureTestCase() {
super();
HaxeDebugLogger.configurePrimaryLoggerToSwallowLogs();
PlatformTestCase.initPlatformLangPrefix();
}
示例10: FileTypeIndexTest
import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
public FileTypeIndexTest() {
PlatformTestCase.initPlatformLangPrefix();
}
示例11: IntegrationTestCase
import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
@SuppressWarnings({"JUnitTestCaseWithNonTrivialConstructors"})
public IntegrationTestCase() {
PlatformTestCase.initPlatformLangPrefix();
}
示例12: PropertiesProjectViewTest
import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
public PropertiesProjectViewTest() {
PlatformTestCase.initPlatformLangPrefix();
}
示例13: setUp
import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
@Override
protected void setUp() throws Exception {
PlatformTestCase.initPlatformLangPrefix();
super.setUp();
}
示例14: XmlPropertiesTest
import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
public XmlPropertiesTest() {
PlatformTestCase.initPlatformLangPrefix();
}
示例15: GithubTest
import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
@SuppressWarnings({"JUnitTestCaseWithNonTrivialConstructors", "UnusedDeclaration"})
protected GithubTest() {
PlatformTestCase.initPlatformLangPrefix();
GitTestUtil.setDefaultBuiltInServerPort();
}