doesNotHaveEntryWithName() — spring-boot Function Reference
Architecture documentation for the doesNotHaveEntryWithName() function in AbstractArchiveIntegrationTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 32a884f4_a2a4_d38a_f6a0_5f19757e3a70["doesNotHaveEntryWithName()"] ab2d861f_92d2_7163_0173_c0e9c03020e7["withJarFile()"] 32a884f4_a2a4_d38a_f6a0_5f19757e3a70 -->|calls| ab2d861f_92d2_7163_0173_c0e9c03020e7 24bafa22_417d_c0a7_6b2f_015e45086aa0["withEntries()"] 32a884f4_a2a4_d38a_f6a0_5f19757e3a70 -->|calls| 24bafa22_417d_c0a7_6b2f_015e45086aa0 style 32a884f4_a2a4_d38a_f6a0_5f19757e3a70 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-maven-plugin/src/intTest/java/org/springframework/boot/maven/AbstractArchiveIntegrationTests.java lines 123–131
JarAssert doesNotHaveEntryWithName(String name) {
withJarFile((jarFile) -> {
withEntries(jarFile, (entries) -> {
Optional<JarEntry> match = entries.filter((entry) -> entry.getName().equals(name)).findFirst();
assertThat(match).isNotPresent();
});
});
return this;
}
Domain
Subdomains
Source
Frequently Asked Questions
What does doesNotHaveEntryWithName() do?
doesNotHaveEntryWithName() is a function in the spring-boot codebase.
What does doesNotHaveEntryWithName() call?
doesNotHaveEntryWithName() calls 2 function(s): withEntries, withJarFile.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free