2014-03-12 15:32:50 +00:00
|
|
|
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(){
|
2014-03-12 17:28:30 +00:00
|
|
|
BytecodeTester.testCodegen("class EmptyClass{}");
|
2014-03-12 15:32:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|