forked from JavaTX/JavaCompilerCore
26 lines
487 B
Java
26 lines
487 B
Java
package bytecode;
|
|
|
|
import org.junit.Test;
|
|
import org.junit.runners.Suite;
|
|
|
|
public class WhileTest extends SourceFileBytecodeTest{
|
|
|
|
public WhileTest(){
|
|
super();
|
|
}
|
|
|
|
@Override
|
|
protected void init() {
|
|
testName = "WhileTest";
|
|
rootDirectory = System.getProperty("user.dir")+"/test/bytecode/";
|
|
}
|
|
|
|
@Test
|
|
public void testConstruct() throws Exception{
|
|
ClassLoader classLoader = getClassLoader();
|
|
|
|
Class cls = classLoader.loadClass(testName);
|
|
|
|
assertTrue(true);
|
|
}
|
|
} |