forked from JavaTX/JavaCompilerCore
7b9a00a7e6
This reverts commit 3ab96a3ed74f41435b6b41502377f5a0084e6d75.
17 lines
337 B
Java
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);
|
|
}
|
|
|
|
}
|