JavaTXCompilerInJavaTX/test/plugindevelopment/MethodTypeInsertTest.java
2014-03-09 13:03:30 +01:00

17 lines
337 B
Java

package plugindevelopment;
import org.junit.Test;
public class MethodTypeInsertTest {
private static final String TEST_FILE = "MethodTypeInsertTest.jav";
private static final String SOLUTION_FILE = "MethodTypeInsertTestSolution.jav";
@Test
public void run(){
TypeInsertTester.test(this.TEST_FILE, this.SOLUTION_FILE);
}
}