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::unlimited () |
Creates a matcher to verify an arbitrary invocation count. | |
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::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. |
using
directive. AutoPointer< TypelessMatcher > mockpp::atLeast | ( | int | expectedCount | ) |
Creates a matcher to verify a minimal invocation count.
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::exactly | ( | int | expectedCount | ) |
Creates a matcher to verify an exact invocation count.
AutoPointer< TypelessMatcher > mockpp::never | ( | const String & | errorMessage | ) |
Creates a matcher to verify that the invactation never occured.
errorMessage | additional info for error message |
AutoPointer< TypelessMatcher > mockpp::never | ( | ) |
Creates a matcher to verify that the invactation never occured.
AutoPointer< TypelessMatcher > mockpp::once | ( | ) |
Creates a matcher to verify a single invocation.
AutoPointer< TypelessMatcher > mockpp::unlimited | ( | ) |
Creates a matcher to verify an arbitrary invocation count.