JavaCompilerCore/test/plugindevelopment/ParameterInsertTest.java

14 lines
338 B
Java
Raw Normal View History

2014-03-10 14:56:17 +00:00
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);
}
}