-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Labels
Description
I am planning to use
- Spring MVC - For Integration testing
- NestedRunner - For nesting test cases
- JUnitParams - For DDT
- Assumes - for specifying test dependencies
- Mockito - For mocking
- PowerMockito - For any mocking abuse I may need to do (I mean class/static method mocking)
- DBUnit - For fiddling with DB data
Spring MVC in the current milestone version (4.2.0.RC1 or > 4.2 whenever the release happens) uses rules instead of runner to support integration with other runners. PowerMock currently supports Rules. Mockito supports Rule in the current Beta version (2.0.17-beta)
However, AFAIK, all others does not support rules. It would be better if this library can implement the runner using Junit Rule instead of Runner so that it can be compatible with all other runners to make a full blown testing stack. Else, people need to hack around to get most out of Java test frameworks.
Reference: