rename class

This commit is contained in:
Stepan Koltsov
2012-03-28 23:56:34 +04:00
parent 6488d65259
commit ca30e7b67b
3 changed files with 3 additions and 8 deletions
@@ -22,7 +22,7 @@ import org.junit.Test;
/**
* @author Stepan Koltsov
*/
public class CompileBuiltinsTest extends AnotherTestCaseWithTmpdir {
public class CompileBuiltinsTest extends TestCaseWithTmpdirIndependentFromIdea {
@Test
public void compile() {
@@ -16,18 +16,13 @@
package org.jetbrains.jet;
import com.intellij.openapi.util.io.FileUtil;
import org.jetbrains.jet.cli.KotlinCompiler;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import java.io.File;
/**
* @author Stepan Koltsov
*/
public class CompileJdkHeadersTest extends AnotherTestCaseWithTmpdir {
public class CompileJdkHeadersTest extends TestCaseWithTmpdirIndependentFromIdea {
@Test
public void compile() {
@@ -25,7 +25,7 @@ import java.io.File;
/**
* @author Stepan Koltsov
*/
public abstract class AnotherTestCaseWithTmpdir {
public abstract class TestCaseWithTmpdirIndependentFromIdea {
protected File tmpdir;
@Before