Tagged Questions

0
votes
2answers
435 views

PHPUnit mock with multiple expects() calls

Using PHPUnit, I wonder how we can have multiple expectation from the same stub/mock. For example, I want to test that the mock will have the method display() called and return NULL. I also want to ...
0
votes
1answer
90 views

Calling a method when expected method on mock was invoked

I have the following scenario: class InterfaceA; class InterfaceB; class InterfaceC; class InterfaceA { virtual void foo(InterfaceC&) = 0; }; class InterfaceB { virtual void bar() = 0; }; ...
0
votes
1answer
326 views

SimpleTest Mock objects: clearing expectations

The short question: Is there a way to reset a Mock object in SimpleTest, removing all expectations? The longer explanation: I have a class that I'm testing using SimpleTest and am having some ...