Lines Matching refs:MockFunction
290 [MockFunction](#MockFunction) to mock the std::function.
3013 using ::testing::MockFunction;
3017 // Class MockFunction<F> has exactly one mock method. It is named
3019 MockFunction<void(string check_point_name)> check;
3858 MockFunction<int(int)> mock;
3881 MockFunction<int(int)> mock;
3899 MockFunction<std::unique_ptr<int>()> mock;
4330 ### Mock std::function {#MockFunction}
4335 But fear not - `MockFunction` can help you with that.
4337 `MockFunction<R(T1, ..., Tn)>` has a mock method `Call()` with the signature:
4350 To use `MockFunction`, first create `MockFunction` object and set up
4357 MockFunction<int(string)> mock_function;
4377 Although `std::function` supports unlimited number of arguments, `MockFunction`