Home / Function/ removeRemovesContainer() — spring-boot Function Reference

removeRemovesContainer() — spring-boot Function Reference

Architecture documentation for the removeRemovesContainer() function in DockerApiTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  80d1ccf4_f71f_6f0e_4a70_e73d265847bd["removeRemovesContainer()"]
  6271d061_2c92_01b0_c3ca_5275fc962dfb["removeRemovesContainer()"]
  6271d061_2c92_01b0_c3ca_5275fc962dfb -->|calls| 80d1ccf4_f71f_6f0e_4a70_e73d265847bd
  6271d061_2c92_01b0_c3ca_5275fc962dfb["removeRemovesContainer()"]
  80d1ccf4_f71f_6f0e_4a70_e73d265847bd -->|calls| 6271d061_2c92_01b0_c3ca_5275fc962dfb
  ffedf588_7c32_be87_49b5_6f0bec311aa1["http()"]
  80d1ccf4_f71f_6f0e_4a70_e73d265847bd -->|calls| ffedf588_7c32_be87_49b5_6f0bec311aa1
  5ebda6ce_1915_7ec7_82b6_9dbaace8503c["emptyResponse()"]
  80d1ccf4_f71f_6f0e_4a70_e73d265847bd -->|calls| 5ebda6ce_1915_7ec7_82b6_9dbaace8503c
  style 80d1ccf4_f71f_6f0e_4a70_e73d265847bd fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

buildpack/spring-boot-buildpack-platform/src/test/java/org/springframework/boot/buildpack/platform/docker/DockerApiTests.java lines 808–815

		@Test
		void removeRemovesContainer() throws Exception {
			ContainerReference reference = ContainerReference.of("e90e34656806");
			URI removeUri = new URI(CONTAINERS_URL + "/e90e34656806");
			given(http().delete(removeUri)).willReturn(emptyResponse());
			this.api.remove(reference, false);
			then(http()).should().delete(removeUri);
		}

Subdomains

Frequently Asked Questions

What does removeRemovesContainer() do?
removeRemovesContainer() is a function in the spring-boot codebase.
What does removeRemovesContainer() call?
removeRemovesContainer() calls 3 function(s): emptyResponse, http, removeRemovesContainer.
What calls removeRemovesContainer()?
removeRemovesContainer() is called by 1 function(s): removeRemovesContainer.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free