Has the method been invoked after another? More...
Public Member Functions | |
InvokedAfterMatcher (InvokedRecorder *in_priorCallRecorder, const String &in_priorCallDescription) | |
Constructs the object. | |
virtual bool | matches (const I &invocation) |
Checks if an invocation matches the expectaton. | |
virtual void | incInvoked (const I &invocation) |
Increments the invocation count. | |
virtual String | describeTo (String &buffer) const |
Appends the description of this object to the buffer. |
Has the method been invoked after another?
Definition at line 51 of file InvokedAfterMatcher.h.
mockpp::InvokedAfterMatcher< I >::InvokedAfterMatcher | ( | InvokedRecorder * | in_priorCallRecorder, | |
const String & | in_priorCallDescription | |||
) | [inline] |
Constructs the object.
in_priorCallRecorder | pointer to the invcation call recorder | |
in_priorCallDescription | string describing the prior call |
Definition at line 59 of file InvokedAfterMatcher.h.
virtual String mockpp::InvokedAfterMatcher< I >::describeTo | ( | String & | buffer | ) | const [inline, virtual] |
Appends the description of this object to the buffer.
buffer | The buffer that the description is appended to. |
Implements mockpp::SelfDescribing.
Definition at line 91 of file InvokedAfterMatcher.h.
virtual void mockpp::InvokedAfterMatcher< I >::incInvoked | ( | const I & | invocation | ) | [inline, virtual] |
Increments the invocation count.
invocation | the invocation data |
Reimplemented from mockpp::StatelessInvocationMatcher< I >.
Definition at line 79 of file InvokedAfterMatcher.h.
virtual bool mockpp::InvokedAfterMatcher< I >::matches | ( | const I & | invocation | ) | [inline, virtual] |
Checks if an invocation matches the expectaton.
invocation | the invocation data (only dummy data) |
Implements mockpp::InvocationMatcher< I >.
Definition at line 70 of file InvokedAfterMatcher.h.