Lines Matching defs:mock
30 // Google Mock - a framework for writing C++ mock classes.
522 DummyMock mock;
523 EXPECT_CALL(mock, TestMethod());
524 mock.TestMethod();
530 HasSubstr("EXPECT_CALL(mock, TestMethod())"));
546 DummyMock mock;
547 ON_CALL(mock, TestMethod());
553 HasSubstr("ON_CALL(mock, TestMethod())"));
569 DummyMock mock;
570 ON_CALL(mock, TestMethodArg(_));
576 HasSubstr("ON_CALL(mock, TestMethodArg(_)"));