@Test
public void suppressAllConstructors() throws Exception {
suppress(constructorsDeclaredIn(SuppressEverything.class));
SuppressEverything suppressEverything = new SuppressEverything();
new SuppressEverything("test");
try {
suppressEverything.something();
fail("Should throw ISE");
} catch (IllegalStateException e) {
assertEquals("error", e.getMessage());
}
}