JavaPatternMatching/test/bytecode/MethodTest.java
2014-08-05 14:24:58 +02:00

13 lines
181 B
Java
Executable File

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