See: Description
| Class | Description |
|---|---|
| InnerTestClassesSuite |
Runs all inner test classes of the class
annotated with
@RunWith(InnerTestClassesSuite.class). |
| MultithreadingTester |
Runs one ore more
RunnableAsserts
concurrently in multiple threads several times. |
| ParallelParameterized |
An extension of the JUnit
Parameterized
runner, which executes the tests for each parameter set
concurrently. |
| ParallelRunner |
An extension of the JUnit
Theories runner, which executes
all @Test methods concurrently. |
| ParallelSuite |
An extension of the
WildcardPatternSuite runner, which executes
its children classes concurrently. |
| PollingWait |
Helper class to wait for asynchronous operations.
|
| RunnableAssert |
Abstract base class to encapsulate assertions,
see
PollingWait for usage example. |
| WildcardPatternSuite |
A replacement for the JUnit runners
Suite and Categories,
which allows you to specify the children classes of your test suite class
using a wildcard pattern. |
| Annotation Type | Description |
|---|---|
| ExcludeCategories |
This annotation can be used with the
WildcardPatternSuite
and the ParallelSuite runner to exclude tests if they are
annotated with @Category. |
| IncludeCategories |
This annotation can be used with the
WildcardPatternSuite
and the ParallelSuite runner to include tests if they are
annotated with @Category. |
| SuiteClasses |
This annotation can be used with the
WildcardPatternSuite
and the ParallelSuite runner. |
Useful classes for writing automated tests with JUnit.
Copyright © 2017. All rights reserved.