Home / Class/ PullImageUpdateEventTests Class — spring-boot Architecture

PullImageUpdateEventTests Class — spring-boot Architecture

Architecture documentation for the PullImageUpdateEventTests class in PullImageUpdateEventTests.java from the spring-boot codebase.

Entity Profile

Source Code

buildpack/spring-boot-buildpack-platform/src/test/java/org/springframework/boot/buildpack/platform/docker/PullImageUpdateEventTests.java lines 31–44

class PullImageUpdateEventTests extends ProgressUpdateEventTests<PullImageUpdateEvent> {

	@Test
	void getIdReturnsId() {
		PullImageUpdateEvent event = createEvent();
		assertThat(event.getId()).isEqualTo("id");
	}

	@Override
	protected PullImageUpdateEvent createEvent(String status, ProgressDetail progressDetail, String progress) {
		return new PullImageUpdateEvent("id", status, progressDetail, progress);
	}

}

Analyze Your Own Codebase

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

Try Supermodel Free