| ChromeTests |
Tests that requires Chrome browser for their execution should be annotated
with @ Category(ChromeTests.class so they can be optionally excluded
from the build when needed.
|
| IgnoreOSGi |
Tests that should not be run inside OSGi container should be annotated with @
Category(IgnoreOSGi.class) so they can be optionally excluded from
the build.
|
| PushTests |
Tests which test push functionality should be annotated with
@Category(PushTests.class).
|
| ScreenshotTests |
Screenshot tests should be annotated with @
Category(ScreenshotTest.class so they can be optionally excluded from
the build when needed.
|
| SlowTests |
Tests which take more than 0.5s to run should be annotated with @
@Category(SlowTests.class) and will be excluded by default from the
test suite.
|
| TestCategory |
Base for classes and interfaces used as a JUnit test category
|