assertEquals("Result ought to be \"Hello altered world\".", expected, actual);
}
@Test
public void partialMockingWithNullArgumentWorks() throws Exception {
final MockSelfDemo tested = createPartialMock(MockSelfDemo.class, "establishConnection");
Connection conn=null;
Whitebox.invokeMethod(tested, "establishConnection", conn);
}