getBuildRequestWhenHasTagsUsesTags() — spring-boot Function Reference
Architecture documentation for the getBuildRequestWhenHasTagsUsesTags() function in ImageTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 238855c6_1c3f_a439_7b01_39adb446479d["getBuildRequestWhenHasTagsUsesTags()"] b74eae5d_f636_54c5_ee76_45af8d43e679["createArtifact()"] 238855c6_1c3f_a439_7b01_39adb446479d -->|calls| b74eae5d_f636_54c5_ee76_45af8d43e679 70a3e195_3608_990f_ed81_3460232951c4["mockApplicationContent()"] 238855c6_1c3f_a439_7b01_39adb446479d -->|calls| 70a3e195_3608_990f_ed81_3460232951c4 8bb4302a_4170_a9a4_61f5_3416246a0165["of()"] 238855c6_1c3f_a439_7b01_39adb446479d -->|calls| 8bb4302a_4170_a9a4_61f5_3416246a0165 style 238855c6_1c3f_a439_7b01_39adb446479d fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-maven-plugin/src/test/java/org/springframework/boot/maven/ImageTests.java lines 191–198
@Test
void getBuildRequestWhenHasTagsUsesTags() {
Image image = new Image();
image.tags = Arrays.asList("my-app:latest", "example.com/my-app:0.0.1-SNAPSHOT", "example.com/my-app:latest");
BuildRequest request = image.getBuildRequest(createArtifact(), mockApplicationContent());
assertThat(request.getTags()).containsExactly(ImageReference.of("my-app:latest"),
ImageReference.of("example.com/my-app:0.0.1-SNAPSHOT"), ImageReference.of("example.com/my-app:latest"));
}
Domain
Subdomains
Source
Frequently Asked Questions
What does getBuildRequestWhenHasTagsUsesTags() do?
getBuildRequestWhenHasTagsUsesTags() is a function in the spring-boot codebase.
What does getBuildRequestWhenHasTagsUsesTags() call?
getBuildRequestWhenHasTagsUsesTags() calls 3 function(s): createArtifact, mockApplicationContent, of.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free