JavaPatternMatching/test/bytecode/WhileTest.java

26 lines
487 B
Java
Raw Normal View History

package bytecode;
import org.junit.Test;
2016-06-17 11:55:14 +00:00
import org.junit.runners.Suite;
public class WhileTest extends SourceFileBytecodeTest{
2016-06-17 11:55:14 +00:00
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);
}
}