final TestEventServiceConfiguration theConfig = new TestEventServiceConfiguration();
theConfig.setConnectionIdGeneratorClassName(SessionConnectionIdGenerator.class.getName());
ConfigurationDependentFactory theConfigurationDependentFactory = ConfigurationDependentFactory.getInstance(theConfig);
final ConnectionIdGenerator theConnectionIdGenerator = theConfigurationDependentFactory.getConnectionIdGenerator();
assertNotNull(theConnectionIdGenerator);
assertTrue(theConnectionIdGenerator instanceof SessionConnectionIdGenerator);
}