use of com.spotify.apollo.Environment in project apollo by spotify.
the class EnvironmentFactoryTest method verifyDummyConfig.
@Test
public void verifyDummyConfig() {
final Environment environment = sut.build().create(SERVICE_NAME, routingContext);
final Config config = environment.config();
assertNotNull(config);
assertEquals("propertyBiValue", config.getString("propertyBi"));
}
Aggregations