Added additional scenario to reflect scenario mentioned in spring-feature-flags

(even though the article does not point to any module in the codebase)
This commit is contained in:
Gerardo Roza
2021-01-18 15:50:55 -03:00
parent 1b127b9b00
commit b33fd1ee9c
3 changed files with 11 additions and 0 deletions
@@ -17,12 +17,16 @@ public class IntegrationMultidocumentFilesIntegrationTest {
@Value("${bael.property}")
private String baelCustomProperty;
@Value("${bael.otherProperty}")
private String baelCustomOtherProperty;
@Value("${bael.root-level-property}")
private String baelRootProperty;
@Test
public void givenProductionProfileActive_whenApplicationStarts_thenDefaultPropertiesUser() {
assertThat(baelCustomProperty).isEqualTo("integrationValue");
assertThat(baelCustomOtherProperty).isEqualTo("integrationExtensionOtherValue");
assertThat(baelRootProperty).isEqualTo("defaultRootLevelValue");
}
}