@Test
public void testGetMongoDBReplicaSetServers() throws RepositoryException, ValidationException {
validProperties.put("mongodb_replica_set", "127.0.0.1:27017,127.0.0.1:27018");
Configuration configuration = new Configuration();
new JadConfig(new InMemoryRepository(validProperties), configuration).process();
Assert.assertEquals(2, configuration.getMongoReplicaSet().size());
}