assertNotNull(configuration);
assertEquals(4, configuration.getSections().size());
InfoSection infoSection = null;
for (Section s : configuration.getSections()) {
if (s instanceof InfoSection) {
infoSection = (InfoSection) s;
}
}
assertNotNull(infoSection);
assertEquals(0, infoSection.getObjects().size());
assertEquals(7, infoSection.getEntries().size());
ActorSection actorSection = null;
for (Section s : configuration.getSections()) {
if (s instanceof ActorSection) {
actorSection = (ActorSection) s;