standardPropertyResolverResolvesMultipleTimes() — spring-boot Function Reference
Architecture documentation for the standardPropertyResolverResolvesMultipleTimes() function in ConfigurationPropertySourcesPropertyResolverTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 3a6b6587_7247_a588_1ef7_36ae2e6d1017["standardPropertyResolverResolvesMultipleTimes()"] 4b0cbf95_105c_735c_52db_6d75ba501b16["createMockPropertySource()"] 3a6b6587_7247_a588_1ef7_36ae2e6d1017 -->|calls| 4b0cbf95_105c_735c_52db_6d75ba501b16 939a6a16_a09a_0762_6ee9_ff1d628c537f["getProperty()"] 3a6b6587_7247_a588_1ef7_36ae2e6d1017 -->|calls| 939a6a16_a09a_0762_6ee9_ff1d628c537f b2e77f3e_609c_d14d_2a57_ef9c62e983d0["getCount()"] 3a6b6587_7247_a588_1ef7_36ae2e6d1017 -->|calls| b2e77f3e_609c_d14d_2a57_ef9c62e983d0 style 3a6b6587_7247_a588_1ef7_36ae2e6d1017 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/properties/source/ConfigurationPropertySourcesPropertyResolverTests.java lines 43–49
@Test
void standardPropertyResolverResolvesMultipleTimes() {
StandardEnvironment environment = new StandardEnvironment();
CountingMockPropertySource propertySource = createMockPropertySource(environment, true);
environment.getProperty("missing");
assertThat(propertySource.getCount("missing")).isEqualTo(2);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does standardPropertyResolverResolvesMultipleTimes() do?
standardPropertyResolverResolvesMultipleTimes() is a function in the spring-boot codebase.
What does standardPropertyResolverResolvesMultipleTimes() call?
standardPropertyResolverResolvesMultipleTimes() calls 3 function(s): createMockPropertySource, getCount, getProperty.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free