Lines Matching defs:StrictMock
30 // Implements class templates NiceMock, NaggyMock, and StrictMock.
37 // StrictMock<MockFoo> is a subclass of MockFoo that treats all
47 // NiceMock, NaggyMock, and StrictMock "inherit" the constructors of
53 // and StrictMock<MockFoo> only works for mock methods defined using
57 // In particular, nesting NiceMock, NaggyMock, and StrictMock is NOT
78 class StrictMock;
86 std::true_type StrictnessModifierProbe(const StrictMock<T>&);
232 class GTEST_INTERNAL_EMPTY_BASE_CLASS StrictMock
238 "Can't apply StrictMock to a class hierarchy that already has a "
242 StrictMock() : MockClass() {
255 explicit StrictMock(A&& arg) : MockClass(std::forward<A>(arg)) {
261 StrictMock(TArg1&& arg1, TArg2&& arg2, An&&... args)
269 StrictMock(const StrictMock&) = delete;
270 StrictMock& operator=(const StrictMock&) = delete;