private final IgnoreSilentlyDriver driver = new IgnoreSilentlyDriver();
@Test
public void does_nothing() {
SuiteNotifier suiteNotifier = mock(SuiteNotifier.class);
Executor executor = mock(Executor.class);
driver.findTests(Object.class, suiteNotifier, executor);
verifyZeroInteractions(suiteNotifier, executor);