21 lines
413 B
Java
21 lines
413 B
Java
package bytecode;
|
|
|
|
import java.util.Vector;
|
|
|
|
import junit.framework.TestCase;
|
|
import mycompiler.MyCompiler;
|
|
import mycompiler.MyCompilerAPI;
|
|
import mycompiler.myexception.JVMCodeException;
|
|
import mycompiler.mytypereconstruction.TypeinferenceResultSet;
|
|
|
|
import org.junit.Test;
|
|
|
|
public class EmptyClassTest extends TestCase {
|
|
|
|
@Test
|
|
public void test(){
|
|
BytecodeTester.testCodegen("class EmptyClass{}");
|
|
}
|
|
|
|
}
|