assertTrue(getNode(tree).isReadOnly(bindings, context));
}
public void testSetValue() {
Tree tree = null;
Bindings bindings = null;
tree = parse("${bad}");
bindings = tree.bind(null, context.getVariableMapper());
getNode(tree).setValue(bindings, context, "good");
assertEquals("good", getNode(tree).getValue(bindings, context, null));