@Test
public void testOnConstant_Variable() throws Exception {
this.codeGenerator.onConstant(new Variable("a", 0));
Expression exp = this.codeGenerator.getResult();
HashMap<String, Object> env = new HashMap<String, Object>();
long now = System.currentTimeMillis();
env.put("a", now);
Object result = exp.execute(env);
assertEquals(now, result);
}