hasUnpackEntryWithNameStartingWith() — spring-boot Function Reference
Architecture documentation for the hasUnpackEntryWithNameStartingWith() function in AbstractArchiveIntegrationTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD acb60d7c_9991_7229_d559_dadb91b6d39f["hasUnpackEntryWithNameStartingWith()"] ab2d861f_92d2_7163_0173_c0e9c03020e7["withJarFile()"] acb60d7c_9991_7229_d559_dadb91b6d39f -->|calls| ab2d861f_92d2_7163_0173_c0e9c03020e7 24bafa22_417d_c0a7_6b2f_015e45086aa0["withEntries()"] acb60d7c_9991_7229_d559_dadb91b6d39f -->|calls| 24bafa22_417d_c0a7_6b2f_015e45086aa0 style acb60d7c_9991_7229_d559_dadb91b6d39f 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 154–164
JarAssert hasUnpackEntryWithNameStartingWith(String prefix) {
withJarFile((jarFile) -> {
withEntries(jarFile, (entries) -> {
Optional<JarEntry> match = entries.filter((entry) -> entry.getName().startsWith(prefix))
.findFirst();
assertThat(match).as("Name starting with %s", prefix)
.hasValueSatisfying((entry) -> assertThat(entry.getComment()).isEqualTo("UNPACK"));
});
});
return this;
}
Domain
Subdomains
Source
Frequently Asked Questions
What does hasUnpackEntryWithNameStartingWith() do?
hasUnpackEntryWithNameStartingWith() is a function in the spring-boot codebase.
What does hasUnpackEntryWithNameStartingWith() call?
hasUnpackEntryWithNameStartingWith() 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