-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Custom runners
Sam Brannen edited this page Mar 24, 2014
·
31 revisions
Some popular third party implementations of runners for use with @RunWith
include:
- SpringJUnit4ClassRunner
- http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/test/context/junit4/SpringJUnit4ClassRunner.html
- MockitoJUnitRunner
- http://docs.mockito.googlecode.com/hg/latest/org/mockito/runners/MockitoJUnitRunner.html
- JMock
- http://jmock.org/javadoc/jmock-2.6.0/doc/org/jmock/integration/junit4/JMock.html
- Concordion
- ConcordionRunner
- Concurrency / Test Helpers
- ConcurrentTestRunner (Run tests in parallel)
- JUnit Toolbox (Run tests in parallel; also Suite and Categories with Patterns, async)
- IntermittentTestRunner (run repeatedly to expose intermittent failures)
- Hierarchical Context Runner – A runner implementation that supports context hierarchies in JUnit.