| 39 | }; |
| 40 | |
| 41 | TEST(MockCallTest, clear) |
| 42 | { |
| 43 | mock().expectOneCall("func"); |
| 44 | mock().clear(); |
| 45 | CHECK(! mock().expectedCallsLeft()); |
| 46 | } |
| 47 | |
| 48 | TEST(MockCallTest, checkExpectationsDoesntFail) |
| 49 | { |
nothing calls this directly
no test coverage detected