@Test
public void suppressOverridingMethod() throws Exception {
suppress(method(SuppressMethod.class, "myMethod"));
SuppressMethod tested = new SuppressMethod();
assertEquals(0, tested.myMethod());
}
@Test
@Ignore("Doesn't work atm")
public void testSuppressMethodInParentOnly() throws Exception {