* @since 3.0
*/
public void testConfigureValue() throws Exception
{
ILibrarySpecification spec = parseLib("ConfigureValue.library");
checkLine(spec, 22);
checkLine(spec.getExtensionSpecification("bedrock"), 24);
Bedrock bedrock = (Bedrock) spec.getExtension("bedrock", Bedrock.class);
assertEquals("flintstone", bedrock.getFred());
}