}
@NotNull
@Override
protected Filter getFilter(Project project, GlobalSearchScope globalSearchScope) {
return new Filter() {
@Override
public boolean shouldAccept(AbstractTestProxy test) {
return !test.isIgnored() && (test.isInterrupted() || test.isDefect());
}
};