assertThat(switchyard.getProperties().size()).isEqualTo(0);
switchyard.refresh();
// verification
mockDirector.verifyGetApplicationCartridges(1, "foobarz", "springeap6");
CartridgeResourceProperties properties = switchyard.getProperties();
// 1 property in embedded block in cartridges
assertThat(properties.size()).isEqualTo(1);
new ResourcePropertyAssert(properties.getAll().iterator().next())
.hasName("module_path")
.hasDescription("Module Path")
.hasType("cart_data");
}