JavaCompilerCore/test/bytecode/MethodTest.java

13 lines
181 B
Java
Raw Normal View History

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