tuple.add(new BytecodeInt(4));
tuple.add(new BytecodeInt(8));
tuple.add(new BytecodeString("Hello World"));
BytecodeValue[] vals = { new BytecodeInt(4), new BytecodeInt(8),
new BytecodeString("Hello World"),
new BytecodeTuple(tuple)};
assertTrue(isInContext(names,vals));
}