My use case is: a unit test class with a lot of static classes used as fixtures for the tests.
All these classes are scan by Nuun and it breaks my build.
So I want to be able to ignore them all by add the @Ignore annotation on my test class.
@Ignore
public class MyTest {
static class MyFixture1 { ... }
static class MyFixture2 { ... }
...
}