CLI tests: move file existance checks to config files

This commit is contained in:
Alexander Udalov
2016-02-08 21:02:58 +05:30
committed by Alexander Udalov
parent 7a6cc71454
commit 3b22483fb2
20 changed files with 60 additions and 46 deletions
@@ -17,11 +17,8 @@
package org.jetbrains.kotlin.cli.jvm;
import org.jetbrains.kotlin.cli.CliBaseTest;
import org.junit.Assert;
import org.junit.Test;
import java.io.File;
public class K2JvmCliTest extends CliBaseTest {
@Test
public void wrongAbiVersion() throws Exception {
@@ -36,8 +33,6 @@ public class K2JvmCliTest extends CliBaseTest {
@Test
public void nonExistingClassPathAndAnnotationsPath() throws Exception {
executeCompilerCompareOutputJVM();
Assert.assertTrue(new File(tmpdir.getTmpDir(), "SimpleKt.class").isFile());
}
@Test