arconia test
The arconia test
command runs tests for your Spring Boot application. It delegates to your build tool’s (Maven/Gradle) test tasks with support for both Java and native modes.
Options
The following options are available:
Option | Default | Description |
---|---|---|
|
|
Perform a clean build before running tests. |
|
|
Run tests in native mode using GraalVM Native Image. |
|
|
Include debug output. |
|
|
Include more verbose output about the execution. |
|
|
Include more details about errors. |
|
Additional build parameters passed directly to the build tool. |
|
|
Display help information for the command. |
Build Tool Integration
The test
command automatically detects whether your project uses Maven or Gradle and runs the appropriate test task:
Build Tool | Command |
---|---|
Gradle |
For JVM tests:
For native tests:
|
Maven |
For JVM tests:
For native tests:
|
Any additional parameters specified with --params
are passed through to the respective build tool command.