Searched refs:mock_function (Results 1 – 2 of 2) sorted by relevance
1854 testing::MockFunction<void()> mock_function; in TEST() local1857 EXPECT_CALL(mock_function, Call()); in TEST()1859 .WillOnce(DoAll(InvokeWithoutArgs(&mock_function, in TEST()
4390 MockFunction<int(string)> mock_function;4393 EXPECT_CALL(mock_function, Call("bar")).WillOnce(Return(1));4396 Foo(mock_function.AsStdFunction());4401 // 4. All expectations will be verified when mock_function