@Test
public void testSuppressMultipleMethods() throws Exception {
suppress(methods(SuppressMethod.class, "getObject", "getShort"));
SuppressMethod tested = new SuppressMethod();
assertNull("A method returning Object should return null after suppressing method code.", tested.getObject());
assertEquals("A method returning a short should return 0 after suppressing method code.", 0, tested.getShort());
}