// Test does not directly use the AppRegistry but the configured broker
// is required for the correct ConfigurationPlugin processing
super.setUp();
XMLConfiguration xmlConfig = new XMLConfiguration();
xmlConfig.addProperty("base.element[@property]", "property");
xmlConfig.addProperty("base.element.name", "name");
// We make these strings as that is how they will be read from the file.
xmlConfig.addProperty("base.element.positiveLong", String.valueOf(POSITIVE_LONG));
xmlConfig.addProperty("base.element.negativeLong", String.valueOf(NEGATIVE_LONG));
xmlConfig.addProperty("base.element.boolean", String.valueOf(true));
xmlConfig.addProperty("base.element.double", String.valueOf(DOUBLE));