TestApplicationRunner Class — spring-boot Architecture
Architecture documentation for the TestApplicationRunner class in SpringApplicationTests.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/SpringApplicationTests.java lines 1972–1987
static class TestApplicationRunner extends AbstractTestRunner implements ApplicationRunner {
private final String name;
TestApplicationRunner(String name, int order, String... expectedBefore) {
super(order, expectedBefore);
this.name = name;
}
@Override
public void run(ApplicationArguments args) {
System.out.println(">>> " + this.name);
markAsRan();
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free