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

startStartsContainer() — spring-boot Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  3e1a3e2a_3c58_f099_6da9_99b509bc4d70["startStartsContainer()"]
  ffedf588_7c32_be87_49b5_6f0bec311aa1["http()"]
  3e1a3e2a_3c58_f099_6da9_99b509bc4d70 -->|calls| ffedf588_7c32_be87_49b5_6f0bec311aa1
  5ebda6ce_1915_7ec7_82b6_9dbaace8503c["emptyResponse()"]
  3e1a3e2a_3c58_f099_6da9_99b509bc4d70 -->|calls| 5ebda6ce_1915_7ec7_82b6_9dbaace8503c
  style 3e1a3e2a_3c58_f099_6da9_99b509bc4d70 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 749–756

		@Test
		void startStartsContainer() throws Exception {
			ContainerReference reference = ContainerReference.of("e90e34656806");
			URI startContainerUri = new URI(CONTAINERS_URL + "/e90e34656806/start");
			given(http().post(startContainerUri)).willReturn(emptyResponse());
			this.api.start(reference);
			then(http()).should().post(startContainerUri);
		}

Subdomains

Frequently Asked Questions

What does startStartsContainer() do?
startStartsContainer() is a function in the spring-boot codebase.
What does startStartsContainer() call?
startStartsContainer() calls 2 function(s): emptyResponse, http.

Analyze Your Own Codebase

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

Try Supermodel Free