Set up a chainable mock method expectations with 1 parameters. More...
Public Types | |
typedef ChainableMockMethod1Common < void, P1 >::InvocationType | InvocationType |
internal shorthand | |
Public Member Functions | |
ChainableMockMethod1 (const String &name, ChainableMockObject *parent) | |
Constructs the mock object. | |
void | forward (const P1 &p1) const |
Actually verifies the mocked method. |
Set up a chainable mock method expectations with 1 parameters.
Partial specialisation for a void return value.
Definition at line 136 of file ChainableMockMethod1.h.
mockpp::ChainableMockMethod1< void, P1 >::ChainableMockMethod1 | ( | const String & | name, | |
ChainableMockObject * | parent | |||
) | [inline] |
Constructs the mock object.
name | human readable description about the expectation | |
parent | parent chainable mock object |
Definition at line 147 of file ChainableMockMethod1.h.
void mockpp::ChainableMockMethod1< void, P1 >::forward | ( | const P1 & | p1 | ) | const [inline] |
Actually verifies the mocked method.
Must be called by the client code.
p1 | mock method parameter 1 |
Definition at line 156 of file ChainableMockMethod1.h.