* @see org.jboss.arquillian.impl.configuration.api.ContainerDef#getProperties()
*/
@Override
public Map<String, String> getContainerProperties()
{
Node props = container.getSingle("configuration");
Map<String, String> properties = new HashMap<String, String>();
if(props != null)
{
for(Node prop: props.get("property"))
{
properties.put(prop.attribute("name"), prop.text());
}
}
return properties;