Lines Matching full:times
120 EXPECT_CALL(mock, constructWithoutProperties("foo")).Times(1); in TEST()
121 EXPECT_CALL(mock, constructWithProperties(_, _, _)).Times(0); in TEST()
137 EXPECT_CALL(mock, constructWithoutProperties("foo")).Times(1); in TEST()
138 EXPECT_CALL(mock, constructWithProperties(_, _, _)).Times(0); in TEST()
154 EXPECT_CALL(mock, constructWithoutProperties(_)).Times(0); in TEST()
155 EXPECT_CALL(mock, constructWithProperties("bar", _, _)).Times(1); in TEST()
171 EXPECT_CALL(mock, constructWithoutProperties(_)).Times(0); in TEST()
172 EXPECT_CALL(mock, constructWithProperties("foo", _, _)).Times(1); in TEST()
188 EXPECT_CALL(mock, setPropertyByName(_, _, _)).Times(0); in TEST()
203 EXPECT_CALL(mock, setPropertyByName(_, _, _)).Times(0); in TEST()
218 EXPECT_CALL(mock, setPropertyByName(_, _, _)).Times(0); in TEST()
233 EXPECT_CALL(mock, setPropertyByName("foo"s, 1ll, _)).Times(1); in TEST()
252 EXPECT_CALL(mock, serializeTwoArgs("/foo"s, "bar"s)).Times(1); in TEST()
268 EXPECT_CALL(mock, serializeTwoArgs("/foo"s, "bar"s)).Times(1); in TEST()
284 EXPECT_CALL(mock, serializeThreeArgs("/foo"s, "bar"s, _)).Times(1); in TEST()
300 EXPECT_CALL(mock, serializeThreeArgs("/foo"s, "bar"s, _)).Times(1); in TEST()
316 EXPECT_CALL(mock, deserializeNoop()).Times(1); in TEST()
332 EXPECT_CALL(mock, deserializeNoop()).Times(1); in TEST()
348 EXPECT_CALL(mock, deserializeThreeArgs("/foo"s, "bar"s, _)).Times(1); in TEST()
364 EXPECT_CALL(mock, deserializeThreeArgs("/foo"s, "bar"s, _)).Times(1); in TEST()