@Test
public void stubSingleMethodExample() throws Exception {
final String expectedReturnValue = "new";
stub(method(SuppressMethod.class, "getObject")).toReturn(expectedReturnValue);
final SuppressMethod tested = new SuppressMethod();
assertEquals(expectedReturnValue, tested.getObject());
assertEquals(expectedReturnValue, tested.getObject());
}