We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e203a8 commit a27e4b9Copy full SHA for a27e4b9
core/src/test/java/org/seedstack/seed/core/ConfigurationIT.java
@@ -187,6 +187,12 @@ public void json_expansion() {
187
assertThat(configuration.get(String.class, "jsonValThroughSysProp.key2")).isEqualTo("val2");
188
}
189
190
+ @Test
191
+ public void mapped_toString() {
192
+ Coffig configuration = injector.getInstance(Application.class).getConfiguration();
193
+ assertThat(configuration.toMappedString()).doesNotContain("${");
194
+ }
195
+
196
@Test
197
public void applicationInjection() {
198
assertThat(application).isNotNull();
0 commit comments