Lines Matching refs:Baz
53 MOCK_METHOD2(Baz, char(const char* s1, const std::string& s2)); // NOLINT
73 ON_CALL(foo, Baz(_, _)) in TestConcurrentMockObjects()
75 ON_CALL(foo, Baz(_, "you")) in TestConcurrentMockObjects()
80 EXPECT_CALL(foo, Baz(_, _)); in TestConcurrentMockObjects()
81 EXPECT_CALL(foo, Baz("hi", "you")) in TestConcurrentMockObjects()
87 EXPECT_EQ('z', foo.Baz("hi", "you")); in TestConcurrentMockObjects()
88 EXPECT_EQ('a', foo.Baz("hi", "you")); in TestConcurrentMockObjects()
89 EXPECT_EQ('b', foo.Baz("hi", "me")); in TestConcurrentMockObjects()
101 const char ch = param.mock_foo->Baz("a", "b"); in Helper1()
111 EXPECT_EQ('\0', param.mock_foo->Baz("x", "y")) << "Expected failure."; in Helper1()
124 EXPECT_CALL(foo, Baz(_, "b")) in TestConcurrentCallsOnSameObject()
127 EXPECT_CALL(foo, Baz(_, "c")); // Expected to be unsatisfied. in TestConcurrentCallsOnSameObject()