package junitspec; import org.junit.Before; import org.junit.Test; public class UnfilteredRandomTest extends RandomWithParityTest { @Override @Before public void setUp() { this.p = new UnfilteredRandom(); } /** * This method is just a dummy place holder that has no testing * functionality. It is here just to keep Eclipse and JUnit 4, when used * with inheritance happy. Without some test method in the derived class, * Eclipse seems to think that there aren't ANY test methods! */ @Test public void emptyTriggerMethod() { // no body } }