Interface TestConfig
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfacestatic enumstatic interfacestatic interface -
Method Summary
Modifier and TypeMethodDescriptionargLine()Additional launch parameters to be used when Quarkus launches the produced artifact for@QuarkusIntegrationTestWhen the artifact is ajar, this string is passed right after thejavacommand.The FQCN of the JUnitClassOrdererto use.Container related test settingsIf continuous testing is enabled.booleanIf output from the running tests should be displayed in the console.booleanIf the test callbacks should be invoked for the integration tests (tests annotated with@QuarkusIntegrationTest).env()Additional environment variables to be set in the process that@QuarkusIntegrationTestlaunches.Test engine ids that should be excluded by default with continuous testing.Modules that should be excluded for continuous testing.Tests that should be excluded with continuous testing.Tags that should be excluded by default with continuous testing.booleanChanges tests to use the 'flat' ClassPath used in Quarkus 1.x versions.Configures the hang detection in @QuarkusTest.Test engine ids that should be included for continuous testing.Modules that should be included for continuous testing.Tests that should be included for continuous testing.Tags that should be included for continuous testing.Used to override the artifact type against which a@QuarkusIntegrationTestor@QuarkusMainIntegrationTestrun.The profile to use when testing using@QuarkusIntegrationTestbooleanIf this is true then only the tests from the main application module will be run (i.e. the module that is currently running mvn quarkus:dev).profile()Profile related test settingsRestAssured related test settingstype()The type of test to run, this can be either:waitTime()Used in@QuarkusIntegrationTestto determine how long the test will wait for the application to launch
-
Method Details
-
continuousTesting
If continuous testing is enabled.The default value is 'paused', which will allow you to start testing from the console or the Dev UI, but will not run tests on startup.
If this is set to 'enabled' then testing will start as soon as the application has started.
If this is 'disabled' then continuous testing is not enabled, and can't be enabled without restarting the application.
-
displayTestOutput
@WithDefault("false") boolean displayTestOutput()If output from the running tests should be displayed in the console. -
classOrderer
@WithDefault("io.quarkus.test.junit.util.QuarkusTestProfileAwareClassOrderer") Optional<String> classOrderer()The FQCN of the JUnitClassOrdererto use. If the class cannot be found, it fallbacks to JUnit default behaviour which does not set aClassOrdererat all.- See Also:
-
includeTags
Tags that should be included for continuous testing. This supports JUnit Tag Expressions.- See Also:
-
excludeTags
Tags that should be excluded by default with continuous testing.This is ignored if include-tags has been set.
Defaults to 'slow'.
This supports JUnit Tag Expressions.
- See Also:
-
includePattern
Tests that should be included for continuous testing. This is a regular expression and is matched against the test class name (not the file name). -
excludePattern
Tests that should be excluded with continuous testing. This is a regular expression and is matched against the test class name (not the file name).This is ignored if include-pattern has been set.
-
includeEngines
Test engine ids that should be included for continuous testing. -
excludeEngines
Test engine ids that should be excluded by default with continuous testing.This is ignored if include-engines has been set.
-
flatClassPath
@WithDefault("false") boolean flatClassPath()Changes tests to use the 'flat' ClassPath used in Quarkus 1.x versions.This means all Quarkus and test classes are loaded in the same ClassLoader, however it means you cannot use continuous testing.
Note that if you find this necessary for your application then you may also have problems running in development mode, which cannot use a flat class path.
-
integrationTestProfile
The profile to use when testing using@QuarkusIntegrationTest -
profile
TestConfig.Profile profile()Profile related test settings -
container
TestConfig.Container container()Container related test settings -
restAssured
TestConfig.RestAssured restAssured()RestAssured related test settings -
argLine
Optional<@WithConverter(io.quarkus.runtime.configuration.TrimmedStringConverter.class) String> argLine()Additional launch parameters to be used when Quarkus launches the produced artifact for@QuarkusIntegrationTestWhen the artifact is ajar, this string is passed right after thejavacommand. When the artifact is acontainer, this string is passed right after thedocker runcommand. When the artifact is anative binary, this string is passed right after the native binary name. -
env
Additional environment variables to be set in the process that@QuarkusIntegrationTestlaunches. -
waitTime
Used in@QuarkusIntegrationTestto determine how long the test will wait for the application to launch -
hangDetectionTimeout
Configures the hang detection in @QuarkusTest. If no activity happens (i.e. no test callbacks are called) over this period then QuarkusTest will dump all threads stack traces, to help diagnose a potential hang.Note that the initial timeout (before Quarkus has started) will only apply if provided by a system property, as it is not possible to read all config sources until Quarkus has booted.
-
type
The type of test to run, this can be either:quarkus-test: Only runs
@QuarkusTestannotated test classes unit: Only runs classes that are not annotated with@QuarkusTestall: Runs both, running the unit tests first -
onlyTestApplicationModule
@WithDefault("false") boolean onlyTestApplicationModule()If this is true then only the tests from the main application module will be run (i.e. the module that is currently running mvn quarkus:dev).If this is false then tests from all dependency modules will be run as well.
-
includeModulePattern
Modules that should be included for continuous testing. This is a regular expression and is matched against the module groupId:artifactId. -
excludeModulePattern
Modules that should be excluded for continuous testing. This is a regular expression and is matched against the module groupId:artifactId.This is ignored if include-module-pattern has been set.
-
enableCallbacksForIntegrationTests
@WithDefault("false") boolean enableCallbacksForIntegrationTests()If the test callbacks should be invoked for the integration tests (tests annotated with@QuarkusIntegrationTest). -
integrationTestArtifactType
Used to override the artifact type against which a@QuarkusIntegrationTestor@QuarkusMainIntegrationTestrun. For example, if the application's artifact is a container build from a jar, this property could be used to test the jar instead of the container.Allowed values are: jar, native
-