Lines Matching refs:Baz
54 MOCK_METHOD2(Baz, char(const char* s1, const internal::string& s2)); // NOLINT
153 ON_CALL(foo, Baz(_, _)) in TestConcurrentMockObjects()
155 ON_CALL(foo, Baz(_, "you")) in TestConcurrentMockObjects()
160 EXPECT_CALL(foo, Baz(_, _)); in TestConcurrentMockObjects()
161 EXPECT_CALL(foo, Baz("hi", "you")) in TestConcurrentMockObjects()
167 EXPECT_EQ('z', foo.Baz("hi", "you")); in TestConcurrentMockObjects()
168 EXPECT_EQ('a', foo.Baz("hi", "you")); in TestConcurrentMockObjects()
169 EXPECT_EQ('b', foo.Baz("hi", "me")); in TestConcurrentMockObjects()
181 const char ch = param.mock_foo->Baz("a", "b"); in Helper1()
191 EXPECT_EQ('\0', param.mock_foo->Baz("x", "y")) << "Expected failure."; in Helper1()
204 EXPECT_CALL(foo, Baz(_, "b")) in TestConcurrentCallsOnSameObject()
207 EXPECT_CALL(foo, Baz(_, "c")); // Expected to be unsatisfied. in TestConcurrentCallsOnSameObject()