I have a testing class like this:
<code>
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class ClassOuterTest {
@Test
public void testOuter() {
assertEquals(1, 0, 0);
}
public static class ClassInnerTest {
@Test
public void testInner() {
assertEquals(1, 0, 0);
}
}
}
</code>
Right now the inner class test is not run when the outer class test is called via Run/Debug. Is there a possibility to force this by Configuration/Annotation or do I have to create a run target for this inner class separately?