Simplify handling of some constraints. More...
Go to the source code of this file.
Namespaces | |
namespace | mockpp |
Namespace for project "Mock Objects for C++". | |
Functions | |
AutoPointer< TypelessMatcher > | mockpp::once () |
Creates a matcher to verify a single invocation. | |
AutoPointer< TypelessMatcher > | mockpp::atLeastOnce () |
Creates a matcher to verify a minimum invocation count of one. | |
AutoPointer< TypelessMatcher > | mockpp::atMost (int expectedCount) |
Creates a matcher to verify a maximal invocation count. | |
AutoPointer< TypelessMatcher > | mockpp::atLeast (int expectedCount) |
Creates a matcher to verify a minimal invocation count. | |
AutoPointer< TypelessMatcher > | mockpp::unlimited () |
Creates a matcher to verify an arbitrary invocation count. | |
AutoPointer< TypelessMatcher > | mockpp::exactly (int expectedCount) |
Creates a matcher to verify an exact invocation count. | |
AutoPointer< TypelessMatcher > | mockpp::never () |
Creates a matcher to verify that the invactation never occured. | |
AutoPointer< TypelessMatcher > | mockpp::never (const String &errorMessage) |
Creates a matcher to verify that the invactation never occured. | |
TypelessConstraint::AP | mockpp::any () |
Creates a constraint that matches any invocation. | |
TypelessConstraint::AP | mockpp::nothing () |
Creates a constraint that never matches an invocation. | |
TypelessStub< void >::AP | mockpp::isVoid () |
Creates a stub returning a void stub. |
Simplify handling of some constraints.
Definition in file ChainingMockObjectSupport.cpp.