public void testMakeReadOnlyWithNoChildren()
throws Exception
{
final DefaultConfiguration configuration =
new DefaultConfiguration( "myElement", "file.xml:20", "" );
configuration.makeReadOnly();
assertTrue( "configuration.isReadOnly()", configuration.isReadOnly() );
}
public void testMakeReadOnlyWithChildren()
throws Exception