| Accessor |
|
| BugProofTest |
The @BugProofTest annotation is provided for marking tests which will be executed in a separate way.
|
| DemoTest |
The @DemoTest annotation is provided for marking tests which are demonstration of usage specific
service.
|
| IntegrationTest |
The @IntegrationTest annotation is provided for marking integration tests which uses real services and
usually will communicate with persistence layer.
|
| ManualTest |
The @ManualTest annotation marks tests that should not be executed in a automated testing environment
|
| PerformanceTest |
The @PerformanceTest annotation is provided for marking tests which will be executed in a different way,
for example 10 times in a row.
|
| UnitTest |
The @UnitTest annotation is provided for marking small unit tests which does not starts
up whole platform to execute test methods.
|