forked from JavaTX/JavaCompilerCore
6fc412d949
This reverts commit711c0d2f79
, reversing changes made to2b47b8e5bf
.
16 lines
342 B
Java
16 lines
342 B
Java
package plugindevelopment;
|
|
|
|
import org.junit.Test;
|
|
|
|
public class VariableTypeInsertTest {
|
|
|
|
private static final String TEST_FILE = "VariableTypeInsertTest.jav";
|
|
private static final String SOLUTION_FILE = "VariableTypeInsertTestSolution.jav";
|
|
|
|
@Test
|
|
public void run(){
|
|
TypeInsertTester.test(this.TEST_FILE, this.SOLUTION_FILE);
|
|
}
|
|
|
|
}
|