xxxxxxxxxx
@Test
public void mockPrivateMethodTest() throws Exception {
Service mock = PowerMockito.spy(new Service());
Mockito.doReturn("New Message from Mock!").when(mock,"privateMessage");
String privateMessage = Whitebox.invokeMethod(mock, "privateMessage");
Assert.assertEquals(privateMessage, "New Message from Mock!");
}