MockConfigurable c = new MockConfigurable(template);
assertEquals("custom", c.getImmutableField());
}
public void testChild() throws StructuralException {
MockChildConfigurable c = new MockChildConfigurable(MockChildConfigurable.getConstructionTemplate());
assertEquals("foo", c.getImmutableField());
((SingleValuedProperty) c.getConfiguration().getProperty("field")).setValue("foo");
assertEquals("foo", c.getField());
}