当前位置: 首页>>代码示例>>Java>>正文


Java PlatformTestCase.initPlatformLangPrefix方法代码示例

本文整理汇总了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);
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:19,代码来源:ModuleRunConfigurationManagerTest.java

示例2: SpellcheckerInspectionTestCase

import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
@SuppressWarnings("JUnitTestCaseWithNonTrivialConstructors")
protected SpellcheckerInspectionTestCase() {
  PlatformTestCase.initPlatformLangPrefix();
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:5,代码来源:SpellcheckerInspectionTestCase.java

示例3: SMLightFixtureTestCase

import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
protected SMLightFixtureTestCase() {
  PlatformTestCase.initPlatformLangPrefix();
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:4,代码来源:SMLightFixtureTestCase.java

示例4: XmlPropertiesIndexTest

import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
public XmlPropertiesIndexTest() {
  PlatformTestCase.initPlatformLangPrefix();
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:4,代码来源:XmlPropertiesIndexTest.java

示例5: PropertiesLexerTest

import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
public PropertiesLexerTest() {
  PlatformTestCase.initPlatformLangPrefix();    
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:4,代码来源:PropertiesLexerTest.java

示例6: RemotelyConfigurableStatServiceTest

import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
@SuppressWarnings("JUnitTestCaseWithNonTrivialConstructors")
public RemotelyConfigurableStatServiceTest() {
  PlatformTestCase.initPlatformLangPrefix();
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:5,代码来源:RemotelyConfigurableStatServiceTest.java

示例7: HaxeGenerateActionTest

import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
@SuppressWarnings("JUnitTestCaseWithNonTrivialConstructors")
public HaxeGenerateActionTest() {
  PlatformTestCase.initPlatformLangPrefix();
}
 
开发者ID:HaxeFoundation,项目名称:intellij-haxe,代码行数:5,代码来源:HaxeGenerateActionTest.java

示例8: TestBase

import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
protected TestBase() {
  PlatformTestCase.initPlatformLangPrefix();
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:4,代码来源:TestBase.java

示例9: HaxeCodeInsightFixtureTestCase

import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
@SuppressWarnings("JUnitTestCaseWithNonTrivialConstructors")
protected HaxeCodeInsightFixtureTestCase() {
  super();
  HaxeDebugLogger.configurePrimaryLoggerToSwallowLogs();
  PlatformTestCase.initPlatformLangPrefix();
}
 
开发者ID:HaxeFoundation,项目名称:intellij-haxe,代码行数:7,代码来源:HaxeCodeInsightFixtureTestCase.java

示例10: FileTypeIndexTest

import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
public FileTypeIndexTest() {
  PlatformTestCase.initPlatformLangPrefix();
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:4,代码来源:FileTypeIndexTest.java

示例11: IntegrationTestCase

import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
@SuppressWarnings({"JUnitTestCaseWithNonTrivialConstructors"})
public IntegrationTestCase() {
  PlatformTestCase.initPlatformLangPrefix();
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:5,代码来源:IntegrationTestCase.java

示例12: PropertiesProjectViewTest

import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
public PropertiesProjectViewTest() {
  PlatformTestCase.initPlatformLangPrefix();
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:4,代码来源:PropertiesProjectViewTest.java

示例13: setUp

import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
@Override
protected void setUp() throws Exception {
  PlatformTestCase.initPlatformLangPrefix();
  super.setUp();
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:6,代码来源:RegExpCompletionTest.java

示例14: XmlPropertiesTest

import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
public XmlPropertiesTest() {
  PlatformTestCase.initPlatformLangPrefix();
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:4,代码来源:XmlPropertiesTest.java

示例15: GithubTest

import com.intellij.testFramework.PlatformTestCase; //导入方法依赖的package包/类
@SuppressWarnings({"JUnitTestCaseWithNonTrivialConstructors", "UnusedDeclaration"})
protected GithubTest() {
  PlatformTestCase.initPlatformLangPrefix();
  GitTestUtil.setDefaultBuiltInServerPort();
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:6,代码来源:GithubTest.java


注:本文中的com.intellij.testFramework.PlatformTestCase.initPlatformLangPrefix方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。