Home | History | Annotate | Download | only in test

Lines Matching defs:mock

32 // Google Mock - a framework for writing C++ mock classes.
521 DummyMock mock;
522 EXPECT_CALL(mock, TestMethod());
523 mock.TestMethod();
529 HasSubstr("EXPECT_CALL(mock, TestMethod())"));
545 DummyMock mock;
546 ON_CALL(mock, TestMethod());
552 HasSubstr("ON_CALL(mock, TestMethod())"));
568 DummyMock mock;
569 ON_CALL(mock, TestMethodArg(_));
575 HasSubstr("ON_CALL(mock, TestMethodArg(_)"));