Home
last modified time | relevance | path

Searched refs:StrictMock (Results 1 – 12 of 12) sorted by relevance

/external/google-breakpad/src/testing/include/gmock/
Dgmock-generated-nice-strict.h164 class StrictMock : public MockClass {
168 StrictMock() { in StrictMock() function
174 explicit StrictMock(const A1& a1) : MockClass(a1) { in StrictMock() function
179 StrictMock(const A1& a1, const A2& a2) : MockClass(a1, a2) { in StrictMock() function
185 StrictMock(const A1& a1, const A2& a2, const A3& a3) : MockClass(a1, a2, a3) { in StrictMock() function
191 StrictMock(const A1& a1, const A2& a2, const A3& a3, in StrictMock() function
198 StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4, in StrictMock() function
206 StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4, in StrictMock() function
214 StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4, in StrictMock() function
223 StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4, in StrictMock() function
[all …]
Dgmock-generated-nice-strict.h.pump37 // Implements class templates NiceMock and StrictMock.
42 // EXPECT_CALL specs), and StrictMock<MockFoo> is a subclass of
45 // NiceMock and StrictMock "inherits" the constructors of their
52 // StrictMock<MockFoo> only works for mock methods defined using the
56 // particular, nesting NiceMock and StrictMock is NOT supported.
109 class StrictMock : public MockClass {
113 StrictMock() {
119 explicit StrictMock(const A1& a1) : MockClass(a1) {
127 StrictMock($for j, [[const A$j& a$j]]) : MockClass($for j, [[a$j]]) {
134 virtual ~StrictMock() {
[all …]
Dgmock-spec-builders.h399 friend class StrictMock; variable
/external/google-breakpad/src/testing/test/
Dgmock-nice-strict_test.cc58 using testing::StrictMock;
211 StrictMock<MockFoo> strict_foo; in TEST()
219 StrictMock<MockFoo> strict_foo; in TEST()
228 StrictMock<MockFoo> strict_foo; in TEST()
237 StrictMock<MockFoo>* const strict_foo = new StrictMock<MockFoo>; in TEST()
249 StrictMock<MockBar> strict_bar("hi"); in TEST()
259 StrictMock<MockBar> strict_bar('a', 'b', "c", "d", 'e', 'f', in TEST()
277 StrictMock< ::Mock> strict; in TEST()
/external/google-tv-pairing-protocol/cpp/tests/polo/pairing/
Dserverpairingsessiontest.cc25 using ::testing::StrictMock;
77 StrictMock<wire::MockWireInterface> interface_;
78 StrictMock<wire::MockWireAdapter> wire_;
79 StrictMock<MockChallengeResponse> challenge_;
81 StrictMock<MockPairingListener> listener_;
82 StrictMock<TestServerPairingSession> session_;
Dclientpairingsessiontest.cc25 using ::testing::StrictMock;
86 StrictMock<wire::MockWireInterface> interface_;
87 StrictMock<wire::MockWireAdapter> wire_;
88 StrictMock<MockChallengeResponse> challenge_;
90 StrictMock<MockPairingListener> listener_;
91 StrictMock<TestClientPairingSession> session_;
Dpairingsessiontest.cc27 using ::testing::StrictMock;
104 StrictMock<wire::MockWireInterface> interface_;
105 StrictMock<wire::MockWireAdapter> wire_;
106 StrictMock<MockChallengeResponse> challenge_;
108 StrictMock<MockPairingListener> listener_;
109 StrictMock<TestPairingSession> session_;
/external/v8/src/libplatform/
Ddefault-platform-unittest.cc9 using testing::StrictMock;
34 StrictMock<MockTask>* task = new StrictMock<MockTask>; in TEST()
Dworker-thread-unittest.cc12 using testing::StrictMock;
34 StrictMock<MockTask>* task = new StrictMock<MockTask>; in TEST()
Dtask-queue-unittest.cc12 using testing::StrictMock;
/external/v8/src/compiler/
Dgraph-reducer-unittest.cc15 using testing::StrictMock;
78 StrictMock<MockReducer> r; in TEST_F()
91 StrictMock<MockReducer> r1, r2; in TEST_F()
101 StrictMock<MockReducer> r1, r2, r3; in TEST_F()
/external/google-tv-pairing-protocol/cpp/tests/polo/wire/protobuf/
Dprotobufwireadaptertest.cc26 using ::testing::StrictMock;
104 StrictMock<MockWireInterface> interface_;
105 StrictMock<MockMessageListener> listener_;