Commit bd9dd9d5 authored by katielevy1's avatar katielevy1 Committed by Stephane Nicoll

Polish KotlinConstructorParametersBinderTests

See gh-25532
parent e1ad2cda
......@@ -46,6 +46,10 @@ public class MockConfigurationPropertySource implements IterableConfigurationPro
OriginTrackedValue.of(value, MockOrigin.of(origin)));
}
public MockConfigurationPropertySource(Map<String, String> configs) {
configs.forEach(this::put);
}
public void put(String name, String value) {
put(ConfigurationPropertyName.of(name), value);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment