}
@Test
public void configurationIterator(){
List<Property> expected = new ArrayList<Property>(){{
add(new Property("somedb.username","user1"));
add(new Property("datasources.customer.password","password"));
add(new Property("url.child","http://constretto.org/child"));
add(new Property("base-url","http://constretto.org"));
}};
List<Property> actual = new ArrayList<Property>();
for (Property property : constrettoConfiguration) {
actual.add(property);