// ensure that the Avalon SystemPropertyService updated the system properties (so it was properly started)
assertTrue(System.getProperty("FOO").equals("BAR"));
CustomAvalonService customAvalonService;
CustomSpringService customSpringService;
SystemPropertyService systemPropertyService;
ServiceManager serviceManager = (ServiceManager) ctx.getBean("avalonContainerBean");
// lookup and use the Spring bean using Spring's context
systemPropertyService = (SystemPropertyService) ctx.getBean("systemPropertyService");
assertNotNull(systemPropertyService);