*/
public class CompiledGuardTest implements Opcodes {
@Test
public void testGuard() {
ClassGuard stringClassGuard = new ClassGuard(0, "");
assertTrue("string is ok", stringClassGuard.apply(new Object[]{"test"}));
assertFalse("integer is not ok", stringClassGuard.apply(new Object[]{1}));
}