| 71 | } |
| 72 | |
| 73 | void MockSupportPlugin::postTestAction(UtestShell& test, TestResult& result) |
| 74 | { |
| 75 | MockSupportPluginReporter reporter(test, result); |
| 76 | mock().setMockFailureStandardReporter(&reporter); |
| 77 | if (!test.hasFailed()) |
| 78 | mock().checkExpectations(); |
| 79 | mock().clear(); |
| 80 | mock().setMockFailureStandardReporter(NULLPTR); |
| 81 | mock().removeAllComparatorsAndCopiers(); |
| 82 | } |
| 83 | |
| 84 | void MockSupportPlugin::installComparator(const SimpleString& name, MockNamedValueComparator& comparator) |
| 85 | { |
nothing calls this directly
no test coverage detected