I have a StrictPartialMock (created with createStrictPartialMock(class, "method1")). and a normal mockedObject.
I want to test if method1() calls StrictPartialMock.method2(), mockedObject.method1(), StrictPartialMock.method3() in that order.
Now i read i can use private IMocksControl ctrl = createStrictControl(); to create a control that can check the order of method calls between mocks, but IMocksControl does not support createPartialMock().
Is there any way to combine these 2 techniques?