Class returning a throwable depending on the parameters passed to a method. More...
Public Member Functions | |
ResponseThrowableVector4 (const String &aName, VerifiableList *parent) | |
Construct a new empty vector. | |
virtual | ~ResponseThrowableVector4 () |
Destroys the vector. | |
void | add (Throwable *throwable, const P1 &p1, const P2 &p2, const P3 &p3, const P4 &p4, unsigned count) |
Adds a throwable. | |
void | add (Throwable *throwable, const ConstraintHolder< P1 > &p1, const ConstraintHolder< P2 > &p2, const ConstraintHolder< P3 > &p3, const ConstraintHolder< P4 > &p4, unsigned count) |
Adds a throwable. | |
void | reset () |
Removes all the objects from the list. | |
bool | find (Throwable *&throwable, const P1 &p1, const P2 &p2, const P3 &p3, const P4 &p4) |
Finds a throwable for a set of parameters. | |
Protected Attributes | |
std::vector< Constraint< P1 > * > | t1vec |
shared internal member | |
std::vector< Constraint< P2 > * > | t2vec |
shared internal member | |
std::vector< Constraint< P3 > * > | t3vec |
shared internal member | |
std::vector< Constraint< P4 > * > | t4vec |
shared internal member |
Class returning a throwable depending on the parameters passed to a method.
Definition at line 46 of file ResponseVector4.h.
mockpp::ResponseThrowableVector4< P1, P2, P3, P4 >::ResponseThrowableVector4 | ( | const String & | aName, | |
VerifiableList * | parent | |||
) | [inline] |
Construct a new empty vector.
aName | Label used to identify vector | |
parent | parent verifiable |
Definition at line 55 of file ResponseVector4.h.
void mockpp::ResponseThrowableVector4< P1, P2, P3, P4 >::add | ( | Throwable * | throwable, | |
const ConstraintHolder< P1 > & | p1, | |||
const ConstraintHolder< P2 > & | p2, | |||
const ConstraintHolder< P3 > & | p3, | |||
const ConstraintHolder< P4 > & | p4, | |||
unsigned | count | |||
) | [inline] |
Adds a throwable.
throwable | the throwable | |
p1 | the parameter 1 upon which to return | |
p2 | the parameter 2 upon which to return | |
p3 | the parameter 3 upon which to return | |
p4 | the parameter 4 upon which to return | |
count | the number of times the object may be used |
Reimplemented in mockpp::ResponseVector4< R, P1, P2, P3, P4 >.
Definition at line 91 of file ResponseVector4.h.
void mockpp::ResponseThrowableVector4< P1, P2, P3, P4 >::add | ( | Throwable * | throwable, | |
const P1 & | p1, | |||
const P2 & | p2, | |||
const P3 & | p3, | |||
const P4 & | p4, | |||
unsigned | count | |||
) | [inline] |
Adds a throwable.
t | the throwable | |
p1 | the parameter 1 upon which to return | |
p2 | the parameter 2 upon which to return | |
p3 | the parameter 3 upon which to return | |
p4 | the parameter 4 upon which to return | |
count | the number of times the object may be used |
Reimplemented in mockpp::ResponseVector4< R, P1, P2, P3, P4 >.
Definition at line 74 of file ResponseVector4.h.
bool mockpp::ResponseThrowableVector4< P1, P2, P3, P4 >::find | ( | Throwable *& | throwable, | |
const P1 & | p1, | |||
const P2 & | p2, | |||
const P3 & | p3, | |||
const P4 & | p4 | |||
) | [inline] |
Finds a throwable for a set of parameters.
t | the throwable | |
p1 | the parameter 1 upon which to return | |
p2 | the parameter 2 upon which to return | |
p3 | the parameter 3 upon which to return | |
p4 | the parameter 4 upon which to return |
Reimplemented in mockpp::ResponseVector4< R, P1, P2, P3, P4 >.
Definition at line 142 of file ResponseVector4.h.