Lines Matching full:foo
120 EXPECT_CALL(mock, constructWithoutProperties("foo")).Times(1); in TEST()
125 MakeInterface<DummyInterfaceWithoutProperties>::op(b, "foo", i, false); in TEST()
134 Interface i{{"foo"s, static_cast<int64_t>(1ll)}}; in TEST()
137 EXPECT_CALL(mock, constructWithoutProperties("foo")).Times(1); in TEST()
142 MakeInterface<DummyInterfaceWithoutProperties>::op(b, "foo", i, false); in TEST()
168 Interface i{{"foo"s, static_cast<int64_t>(1ll)}}; in TEST()
172 EXPECT_CALL(mock, constructWithProperties("foo", _, _)).Times(1); in TEST()
176 MakeInterface<DummyInterfaceWithProperties>::op(b, "foo", i, false); in TEST()
192 MakeInterface<DummyInterfaceWithoutProperties>::op(b, "foo", i, false); in TEST()
200 Interface i{{"foo"s, static_cast<int64_t>(1ll)}}; in TEST()
207 MakeInterface<DummyInterfaceWithoutProperties>::op(b, "foo", i, false); in TEST()
222 MakeInterface<DummyInterfaceWithProperties>::op(b, "foo", i, false); in TEST()
230 Interface i{{"foo"s, static_cast<int64_t>(1ll)}}; in TEST()
233 EXPECT_CALL(mock, setPropertyByName("foo"s, 1ll, _)).Times(1); in TEST()
250 MakeInterface<DummyInterfaceWithoutProperties>::op(b, "foo", i, false); in TEST()
252 EXPECT_CALL(mock, serializeTwoArgs("/foo"s, "bar"s)).Times(1); in TEST()
255 "/foo"s, "bar"s, r); in TEST()
261 Interface i{{"foo"s, static_cast<int64_t>(1ll)}}; in TEST()
266 MakeInterface<DummyInterfaceWithoutProperties>::op(b, "foo", i, false); in TEST()
268 EXPECT_CALL(mock, serializeTwoArgs("/foo"s, "bar"s)).Times(1); in TEST()
271 "/foo"s, "bar"s, r); in TEST()
282 MakeInterface<DummyInterfaceWithProperties>::op(b, "foo", i, false); in TEST()
284 EXPECT_CALL(mock, serializeThreeArgs("/foo"s, "bar"s, _)).Times(1); in TEST()
287 "/foo"s, "bar"s, r); in TEST()
293 Interface i{{"foo"s, static_cast<int64_t>(1ll)}}; in TEST()
298 MakeInterface<DummyInterfaceWithProperties>::op(b, "foo", i, false); in TEST()
300 EXPECT_CALL(mock, serializeThreeArgs("/foo"s, "bar"s, _)).Times(1); in TEST()
303 "/foo"s, "bar"s, r); in TEST()
314 MakeInterface<DummyInterfaceWithoutProperties>::op(b, "foo", i, false); in TEST()
319 "/foo"s, "bar"s, r); in TEST()
325 Interface i{{"foo"s, static_cast<int64_t>(1ll)}}; in TEST()
330 MakeInterface<DummyInterfaceWithoutProperties>::op(b, "foo", i, false); in TEST()
335 "/foo"s, "bar"s, r); in TEST()
346 MakeInterface<DummyInterfaceWithProperties>::op(b, "foo", i, false); in TEST()
348 EXPECT_CALL(mock, deserializeThreeArgs("/foo"s, "bar"s, _)).Times(1); in TEST()
351 "/foo"s, "bar"s, r); in TEST()
357 Interface i{{"foo"s, static_cast<int64_t>(1ll)}}; in TEST()
362 MakeInterface<DummyInterfaceWithProperties>::op(b, "foo", i, false); in TEST()
364 EXPECT_CALL(mock, deserializeThreeArgs("/foo"s, "bar"s, _)).Times(1); in TEST()
367 "/foo"s, "bar"s, r); in TEST()