I organized junit tests using one inner class for each method, as described:
Here, in an exempted article (on nunit testing) , and Here, in this SO question
public class TestMyThing { public static class TestMyThingMethodOne { @Test public void testMethodOneDoesACertainBehaviour() {
However, when I try to run junit tests for this, Eclipse asks which of the internal class tests I want to run, and I can only choose one. Is there a way to indicate that I want every test in all inner classes to run for the TestMyThing class?
source share