basicExecution() — spring-boot Function Reference
Architecture documentation for the basicExecution() function in BootTestRunIntegrationTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 7ae70b56_0523_9871_fb90_f51d056c1bb5["basicExecution()"] 0e6a6806_8dbb_7f18_60bc_f29eeb2dfaf0["copyClasspathApplication()"] 7ae70b56_0523_9871_fb90_f51d056c1bb5 -->|calls| 0e6a6806_8dbb_7f18_60bc_f29eeb2dfaf0 c7986895_3e4f_9f68_d64c_8b6c984d0f0d["canonicalPathOf()"] 7ae70b56_0523_9871_fb90_f51d056c1bb5 -->|calls| c7986895_3e4f_9f68_d64c_8b6c984d0f0d style 7ae70b56_0523_9871_fb90_f51d056c1bb5 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/tasks/run/BootTestRunIntegrationTests.java lines 51–62
@TestTemplate
void basicExecution() throws IOException {
copyClasspathApplication();
BuildResult result = this.gradleBuild.build("bootTestRun");
BuildTask task = result.task(":bootTestRun");
assertThat(task).isNotNull();
assertThat(task.getOutcome()).isEqualTo(TaskOutcome.SUCCESS);
assertThat(result.getOutput()).contains("1. " + canonicalPathOf("build/classes/java/test"))
.contains("2. " + canonicalPathOf("build/resources/test"))
.contains("3. " + canonicalPathOf("build/classes/java/main"))
.contains("4. " + canonicalPathOf("build/resources/main"));
}
Domain
Subdomains
Source
Frequently Asked Questions
What does basicExecution() do?
basicExecution() is a function in the spring-boot codebase.
What does basicExecution() call?
basicExecution() calls 2 function(s): canonicalPathOf, copyClasspathApplication.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free