Lines Matching refs:mock

116     MockInterface mock;  in TEST()  local
120 EXPECT_CALL(mock, constructWithoutProperties("foo")).Times(1); in TEST()
121 EXPECT_CALL(mock, constructWithProperties(_, _, _)).Times(0); in TEST()
133 MockInterface mock; in TEST() local
137 EXPECT_CALL(mock, constructWithoutProperties("foo")).Times(1); in TEST()
138 EXPECT_CALL(mock, constructWithProperties(_, _, _)).Times(0); in TEST()
150 MockInterface mock; in TEST() local
154 EXPECT_CALL(mock, constructWithoutProperties(_)).Times(0); in TEST()
155 EXPECT_CALL(mock, constructWithProperties("bar", _, _)).Times(1); in TEST()
167 MockInterface mock; in TEST() local
171 EXPECT_CALL(mock, constructWithoutProperties(_)).Times(0); in TEST()
172 EXPECT_CALL(mock, constructWithProperties("foo", _, _)).Times(1); in TEST()
184 MockInterface mock; in TEST() local
188 EXPECT_CALL(mock, setPropertyByName(_, _, _)).Times(0); in TEST()
199 MockInterface mock; in TEST() local
203 EXPECT_CALL(mock, setPropertyByName(_, _, _)).Times(0); in TEST()
214 MockInterface mock; in TEST() local
218 EXPECT_CALL(mock, setPropertyByName(_, _, _)).Times(0); in TEST()
229 MockInterface mock; in TEST() local
233 EXPECT_CALL(mock, setPropertyByName("foo"s, 1ll, _)).Times(1); in TEST()
244 MockInterface mock; in TEST() local
252 EXPECT_CALL(mock, serializeTwoArgs("/foo"s, "bar"s)).Times(1); in TEST()
260 MockInterface mock; in TEST() local
268 EXPECT_CALL(mock, serializeTwoArgs("/foo"s, "bar"s)).Times(1); in TEST()
276 MockInterface mock; in TEST() local
284 EXPECT_CALL(mock, serializeThreeArgs("/foo"s, "bar"s, _)).Times(1); in TEST()
292 MockInterface mock; in TEST() local
300 EXPECT_CALL(mock, serializeThreeArgs("/foo"s, "bar"s, _)).Times(1); in TEST()
308 MockInterface mock; in TEST() local
316 EXPECT_CALL(mock, deserializeNoop()).Times(1); in TEST()
324 MockInterface mock; in TEST() local
332 EXPECT_CALL(mock, deserializeNoop()).Times(1); in TEST()
340 MockInterface mock; in TEST() local
348 EXPECT_CALL(mock, deserializeThreeArgs("/foo"s, "bar"s, _)).Times(1); in TEST()
356 MockInterface mock; in TEST() local
364 EXPECT_CALL(mock, deserializeThreeArgs("/foo"s, "bar"s, _)).Times(1); in TEST()