| Class | Description |
|---|---|
| ParallelJUnit |
Custom JUnit runner for parallel execution of JUnit test methods.
|
| Exception | Description |
|---|---|
| TestClassInstantiationException |
Exception thrown when the default parameter-lass constructor of the test class cannot be instantiated.
|
| TestMethodExecutionDurationCheckFailedException |
Exception thrown when a test takes longer than the given timeout.
|
| TestMethodExecutionException |
Exception thrown when a test method execution throws an Exception.
|
| Annotation Type | Description |
|---|---|
| ConcurrencyTest |
Normal JUnit Test but it executes the same test method in parallel in separate
threads and with separate test class instantiated objects.
|
| LoadTest |
Enables applying a load upon a system under test by enabling the same unit test method to be ran in concurrent parallel threads.
|
| ParallelizationTest |
Executes the test first once to populate caches,
then one more time in one single thread to benchmark
test duration with execution in a single thread, and
lastly executes with multiple threads to check if the
execution time is significantly longer with parallel
threads.
|
Copyright © 2020. All rights reserved.