@Test
public void testInstantiation() {
run = new RuntimeFrame(pool, varTable);
assertNotNull("Failed to instante runtime frame", run);
for (int i = 0; i < 255; ++i) {
AbstractInstructionEvaluator eval = run.getEvaluator(i);
assertNotNull("Retrieving evaluator for " + i, eval);
System.out.println(eval.getClass().getName() + "\t"
+ JVMInstructionSet.getOpcodeString(i));
}
}