* Tests obtaining the bean's properties when reserved attributes are
* involved. These should be ignored.
*/
public void testGetBeanPropertiesWithReservedAttributes()
{
HierarchicalConfiguration config = new HierarchicalConfiguration();
setupBeanDeclaration(config, KEY, TEST_PROPS, TEST_VALUES);
config.addProperty(KEY + "[@config-testattr]", "yes");
config.addProperty(KEY + "[@config-anothertest]", "this, too");
decl = new XMLBeanDeclaration(config, KEY);
checkProperties(decl, TEST_PROPS, TEST_VALUES);
}