I have custom runner of JUNIT, run with annotation: @RunWith(SomeClass.class)
When running maven goal test it does not run it. What should be done? is it configurable?
I have custom runner of JUNIT, run with annotation: @RunWith(SomeClass.class)
When running maven goal test it does not run it. What should be done? is it configurable?
Most likely the problem isn't related to @RunWith; otherwise you should at least get an error. Does the test class match one of Maven's (Surefire's) naming patterns for test classes (e.g. **/*Test.java)?