121122123124125126127128129130131
assertThat(config.get("baz"), is("bar")); } @Test public void customizer() throws Exception { underTest.custom(new Customizer() { @Override public void apply(final ConfigurationBuilder builder) throws Exception { builder.set("foo", "bar"); } });