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