Home
last modified time | relevance | path

Searched refs:helper_ (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-spec-builders_test.cc2137 LogTestHelper helper_; member in testing::__anon061b47f50111::GMockLogTest
2142 EXPECT_CALL(helper_, Foo(_)).WillOnce(Return(PrintMeNot())); in TEST_F()
2143 helper_.Foo(PrintMeNot()); // This is an expected call. in TEST_F()
2148 EXPECT_CALL(helper_, Foo(_)).WillOnce(Return(PrintMeNot())); in TEST_F()
2149 helper_.Foo(PrintMeNot()); // This is an expected call. in TEST_F()
2154 ON_CALL(helper_, Foo(_)).WillByDefault(Return(PrintMeNot())); in TEST_F()
2155 helper_.Foo(PrintMeNot()); // This should generate a warning. in TEST_F()