Home / Type/ TestState Type — spring-boot Architecture

TestState Type — spring-boot Architecture

Architecture documentation for the TestState type/interface in ApplicationAvailabilityBeanTests.java from the spring-boot codebase.

Entity Profile

Source Code

core/spring-boot/src/test/java/org/springframework/boot/availability/ApplicationAvailabilityBeanTests.java lines 127–145

	enum TestState implements AvailabilityState {

		ONE {
			@Override
			public String test() {
				return "spring";
			}
		},

		TWO {
			@Override
			public String test() {
				return "boot";
			}
		};

		abstract String test();

	}

Analyze Your Own Codebase

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

Try Supermodel Free