@RunWith(PowerMockRunner.class)
public class NiceDemoTest {
@Test
public void testCallAThenB_noExpectations() throws Exception {
NiceDemo tested = createNicePartialMock(NiceDemo.class, "A", "B");
replay(tested);
tested.callAThenB();
verify(tested);
}