/**
  * Test framework cannot properly dispose newly opened project. This is a hack to manually trigger
  * disposal and ignore all disposal errors.
  */
 @Override
 public void tearDown() throws Exception {
   PlatformTestCase.closeAndDisposeProjectAndCheckThatNoOpenProjects(
       myProject, new ArrayList<Throwable>());
   cleanProjectRoot();
 }
 protected SvnTestCase() {
   PlatformTestCase.initPlatformLangPrefix();
 }
 public void setUp() throws Exception {
   super.setUp();
   final File currentTestRoot = new File("testData/rebar/sampleProject");
   FileUtil.copyDir(currentTestRoot, new File(getProject().getBaseDir().getPath()));
 }
 protected SMLightFixtureTestCase() {
   PlatformTestCase.initPlatformLangPrefix();
 }
 @SuppressWarnings("JUnitTestCaseWithNonTrivialConstructors")
 public PsiBuilderQuickTest() {
   PlatformTestCase.initPlatformLangPrefix();
 }