JavaTXCompilerInJavaTX/test/plugindevelopment/ParameterInsertTest.java
JanUlrich 6fc412d949 Revert "Merge branch 'bytecode'"
This reverts commit 711c0d2f79, reversing
changes made to 2b47b8e5bf.
2015-05-12 19:54:34 +02:00

14 lines
338 B
Java

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