-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
I would like to annotate a whole inner class with @Ignore
and dismiss all test cases from there
@RunWith(NestedRunner.class)
public class Tester {
@Test
public void test() {
assertTrue(true);
}
public class Nested {
@Test
public void test() {
assertTrue(true);
}
@Ignore
public class Ignored {
@Test
public void test() {
fail("Should be ignored");
}
public class InnerIgnored {
@Test
public void test() {
fail("Should be ignored");
}
}
}
public class NotIgnored {
@Test
public void test() {
assertTrue(true);
}
public class InnerNotIgnored {
@Test
public void test() {
assertTrue(true);
}
}
}
}
}
Metadata
Metadata
Assignees
Labels
No labels