JavaCompilerCore/test/bytecode/MethodTest.java
2014-03-12 18:28:30 +01:00

13 lines
181 B
Java

package bytecode;
import org.junit.Test;
public class MethodTest {
@Test
public void test(){
BytecodeTester.testCodegen("class MethodTest{ public void method(){} }");
}
}