BytecodeValue res = runTest(s);
assertEquals(res.toString(), "()");
String[] names = { "a", "b", "c", "d", "e" };
BytecodeValue[] vals = { new BytecodeInt(8), new BytecodeInt(6),
new BytecodeBoolean(false), new BytecodeString("hello"),
new BytecodeInt(3)};
assertTrue(isInContext(names, vals));
}