VariableSpace scope = new VariableSpace();
scope.setVariable("a1", "aaa");
Record r = new RecordImpl();
c.check(r, scope);
CheckResult res = c.check(r, scope);
Assert.assertTrue(res.isPassed());
}
@Test
public void testVariableAccessUndefinedVariable() {