Improves the tests for nice, naggy, and strict mocks.

This commit is contained in:
zhanyong.wan
2013-03-01 07:10:07 +00:00
parent 20d1a235bc
commit c896504e41
5 changed files with 77 additions and 25 deletions

View File

@@ -43,6 +43,7 @@ using testing::_;
using testing::AnyNumber;
using testing::Ge;
using testing::InSequence;
using testing::NaggyMock;
using testing::Ref;
using testing::Return;
using testing::Sequence;
@@ -61,7 +62,7 @@ class MockFoo {
class GMockOutputTest : public testing::Test {
protected:
MockFoo foo_;
NaggyMock<MockFoo> foo_;
};
TEST_F(GMockOutputTest, ExpectedCall) {