@groovy.transform.CompileStatic final enum TestKitLocations extends Enum<E<E>>
Strategy for managing the TestKit directory location.
| Modifiers | Name | Description |
|---|---|---|
static TestKitLocations |
MAX_VALUE |
|
static TestKitLocations |
MIN_VALUE |
|
static TestKitLocations |
PER_GROUP |
Keep the Testkit data, but share the directory between the complete testset. |
static TestKitLocations |
PER_TEST |
Keep one TestKit directory per test. |
static TestKitLocations |
SHARED |
Share one testkit between all tests. |
| Type Params | Return Type | Name and description |
|---|---|---|
|
TestKitLocations |
next() |
|
TestKitLocations |
previous() |
|
static TestKitLocations |
valueOf(String name) |
|
static final TestKitLocations[] |
values() |
Keep the Testkit data, but share the directory between the complete testset.
Keep one TestKit directory per test. This options uses the most space, but allows detailed analysis per test.
Share one testkit between all tests.
Tests run faster, but problems can be harder to diagnose.
THis is the default mode.