Merge pull request #2387 from kuzkry:iff

PiperOrigin-RevId: 268693457
This commit is contained in:
Shaindel Schwartz
2019-09-12 12:10:51 -04:00
35 changed files with 334 additions and 317 deletions

View File

@@ -742,12 +742,12 @@ you can do it earlier:
using ::testing::Mock;
...
// Verifies and removes the expectations on mock_obj;
// returns true if successful.
// returns true if and only if successful.
Mock::VerifyAndClearExpectations(&mock_obj);
...
// Verifies and removes the expectations on mock_obj;
// also removes the default actions set by ON_CALL();
// returns true if successful.
// returns true if and only if successful.
Mock::VerifyAndClear(&mock_obj);
```