emptyGroups() — spring-boot Function Reference
Architecture documentation for the emptyGroups() function in ConfigurationMetadataRepositoryJsonBuilderTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 3717ff9e_abb4_75fc_0e79_e247793b936f["emptyGroups()"] 98b9dad0_f3a8_c971_f00c_7911af375efc["validateEmptyGroup()"] 3717ff9e_abb4_75fc_0e79_e247793b936f -->|calls| 98b9dad0_f3a8_c971_f00c_7911af375efc 03e76805_67f6_02dc_71cd_4fb3e6172301["contains()"] 3717ff9e_abb4_75fc_0e79_e247793b936f -->|calls| 03e76805_67f6_02dc_71cd_4fb3e6172301 style 3717ff9e_abb4_75fc_0e79_e247793b936f fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-metadata/src/test/java/org/springframework/boot/configurationmetadata/ConfigurationMetadataRepositoryJsonBuilderTests.java lines 141–150
@Test
void emptyGroups() throws IOException {
try (InputStream in = getInputStreamFor("empty-groups")) {
ConfigurationMetadataRepository repo = ConfigurationMetadataRepositoryJsonBuilder.create(in).build();
validateEmptyGroup(repo);
assertThat(repo.getAllGroups()).hasSize(1);
contains(repo.getAllProperties(), "name", "title");
assertThat(repo.getAllProperties()).hasSize(2);
}
}
Domain
Subdomains
Source
Frequently Asked Questions
What does emptyGroups() do?
emptyGroups() is a function in the spring-boot codebase.
What does emptyGroups() call?
emptyGroups() calls 2 function(s): contains, validateEmptyGroup.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free