I have a base class for many tests in which there are some helper methods that they need.
It itself does not have any tests, but JUnit (in eclipse) calls the test runner on it and complains that there are no methods for testing.
How can I make it ignore this class?
I know that I could add a dummyTest method that would solve the problem, but it will also appear for all child classes.
Suggestions?
junit junit4
Allain Lalonde Jan 20 '09 at 3:00 p.m. 2009-01-20 15:00
source share