doTestNestedProfile() — spring-boot Function Reference
Architecture documentation for the doTestNestedProfile() function in SpringBootJoranConfiguratorTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 81740043_d3bc_7aed_3cde_363ebee69142["doTestNestedProfile()"] 465a18f5_833c_e54b_2a67_e34201bd91d6["profileNestedActiveActive()"] 465a18f5_833c_e54b_2a67_e34201bd91d6 -->|calls| 81740043_d3bc_7aed_3cde_363ebee69142 9e35d22a_e502_40ac_243c_9f27cca622a7["profileNestedActiveNotActive()"] 9e35d22a_e502_40ac_243c_9f27cca622a7 -->|calls| 81740043_d3bc_7aed_3cde_363ebee69142 18b3c2ad_7e09_5285_ced7_6aae8f0666a1["profileNestedNotActiveActive()"] 18b3c2ad_7e09_5285_ced7_6aae8f0666a1 -->|calls| 81740043_d3bc_7aed_3cde_363ebee69142 0428a043_9436_078c_a334_baf20d3d5fb0["profileNestedNotActiveNotActive()"] 0428a043_9436_078c_a334_baf20d3d5fb0 -->|calls| 81740043_d3bc_7aed_3cde_363ebee69142 fdf4c352_485d_8ff2_6eca_236f4915886f["initialize()"] 81740043_d3bc_7aed_3cde_363ebee69142 -->|calls| fdf4c352_485d_8ff2_6eca_236f4915886f style 81740043_d3bc_7aed_3cde_363ebee69142 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/logging/logback/SpringBootJoranConfiguratorTests.java lines 296–307
private void doTestNestedProfile(boolean expected, String... profiles) throws JoranException {
this.environment.setActiveProfiles(profiles);
initialize("nested.xml");
this.logger.trace("Hello");
if (expected) {
assertThat(this.output).contains("Hello");
}
else {
assertThat(this.output).doesNotContain("Hello");
}
}
Domain
Subdomains
Calls
Called By
- profileNestedActiveActive()
- profileNestedActiveNotActive()
- profileNestedNotActiveActive()
- profileNestedNotActiveNotActive()
Source
Frequently Asked Questions
What does doTestNestedProfile() do?
doTestNestedProfile() is a function in the spring-boot codebase.
What does doTestNestedProfile() call?
doTestNestedProfile() calls 1 function(s): initialize.
What calls doTestNestedProfile()?
doTestNestedProfile() is called by 4 function(s): profileNestedActiveActive, profileNestedActiveNotActive, profileNestedNotActiveActive, profileNestedNotActiveNotActive.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free