public void suppressEverythingExample() throws Exception {
suppress(everythingDeclaredIn(SuppressEverything.class));
SuppressEverything suppressEverything = new SuppressEverything();
new SuppressEverything("test");
suppressEverything.something();
suppressEverything.somethingElse();
}
private final class ReturnValueChangingInvocationHandler implements InvocationHandler {
public Object invoke(Object object, Method method, Object[] arguments) throws Throwable {