testSystemPropertyInitializesFormat() — spring-boot Function Reference
Architecture documentation for the testSystemPropertyInitializesFormat() function in JavaLoggingSystemTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 6975da44_ad70_396d_f655_a82fda69e62b["testSystemPropertyInitializesFormat()"] bffa5cc2_2336_d219_9e81_a81a831f09b1["initialize()"] 6975da44_ad70_396d_f655_a82fda69e62b -->|calls| bffa5cc2_2336_d219_9e81_a81a831f09b1 7717cdc8_e256_829d_da23_be6602ac541c["getInitializationContext()"] 6975da44_ad70_396d_f655_a82fda69e62b -->|calls| 7717cdc8_e256_829d_da23_be6602ac541c 501f40c7_eea3_8197_664f_2a7d4a9c3264["beforeInitialize()"] 6975da44_ad70_396d_f655_a82fda69e62b -->|calls| 501f40c7_eea3_8197_664f_2a7d4a9c3264 style 6975da44_ad70_396d_f655_a82fda69e62b fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/logging/java/JavaLoggingSystemTests.java lines 116–125
@Test
void testSystemPropertyInitializesFormat(CapturedOutput output) {
System.setProperty(LoggingSystemProperty.PID.getEnvironmentVariableName(), "1234");
this.loggingSystem.beforeInitialize();
this.loggingSystem.initialize(getInitializationContext(),
"classpath:" + ClassUtils.addResourcePathToPackagePath(getClass(), "logging.properties"), null);
this.logger.info("Hello world");
this.logger.info("Hello world");
assertThat(output).contains("Hello world").contains("1234 INFO [");
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testSystemPropertyInitializesFormat() do?
testSystemPropertyInitializesFormat() is a function in the spring-boot codebase.
What does testSystemPropertyInitializesFormat() call?
testSystemPropertyInitializesFormat() calls 3 function(s): beforeInitialize, getInitializationContext, initialize.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free