1920212223242526272829
public void testCallAThenB_noExpectations() throws Exception { NiceDemo tested = createNicePartialMock(NiceDemo.class, "A", "B"); replay(tested); tested.callAThenB(); verify(tested); } }