}
@Test
public void testInheritedElementsUnique() throws Exception
{
final SimpleService child1 = (SimpleService) getFlowConstruct("child-service-1");
final SimpleService child2 = (SimpleService) getFlowConstruct("child-service-2");
assertNotSame(child1.getMessageSource(), child2.getMessageSource());
assertNotSame(child1.getComponent(), child2.getComponent());
assertNotSame(child1.getExceptionListener(), child2.getExceptionListener());
}