noFile() — spring-boot Function Reference
Architecture documentation for the noFile() function in JavaLoggingSystemTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 026d87d2_1fae_971e_d9a3_3338d1f38a97["noFile()"] bffa5cc2_2336_d219_9e81_a81a831f09b1["initialize()"] 026d87d2_1fae_971e_d9a3_3338d1f38a97 -->|calls| bffa5cc2_2336_d219_9e81_a81a831f09b1 7717cdc8_e256_829d_da23_be6602ac541c["getInitializationContext()"] 026d87d2_1fae_971e_d9a3_3338d1f38a97 -->|calls| 7717cdc8_e256_829d_da23_be6602ac541c 13cca41d_e6d4_6c55_4166_597017d5c02e["tmpDir()"] 026d87d2_1fae_971e_d9a3_3338d1f38a97 -->|calls| 13cca41d_e6d4_6c55_4166_597017d5c02e 501f40c7_eea3_8197_664f_2a7d4a9c3264["beforeInitialize()"] 026d87d2_1fae_971e_d9a3_3338d1f38a97 -->|calls| 501f40c7_eea3_8197_664f_2a7d4a9c3264 style 026d87d2_1fae_971e_d9a3_3338d1f38a97 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/logging/java/JavaLoggingSystemTests.java lines 83–91
@Test
void noFile(CapturedOutput output) {
this.loggingSystem.beforeInitialize();
this.logger.info("Hidden");
this.loggingSystem.initialize(getInitializationContext(), null, null);
this.logger.info("Hello world");
assertThat(output).contains("Hello world").doesNotContain("Hidden");
assertThat(new File(tmpDir() + "/spring.log")).doesNotExist();
}
Domain
Subdomains
Source
Frequently Asked Questions
What does noFile() do?
noFile() is a function in the spring-boot codebase.
What does noFile() call?
noFile() calls 4 function(s): beforeInitialize, getInitializationContext, initialize, tmpDir.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free