Lines Matching refs:Expectation

375   Expectation e = EXPECT_CALL(a, DoA(1)).Times(AnyNumber());  in TEST()
401 Expectation e = EXPECT_CALL(a, DoA(1)); in TEST()
1392 Expectation e1; // Default ctor. in TEST()
1395 Expectation e2 = EXPECT_CALL(a, DoA(2)); in TEST()
1396 Expectation e3 = EXPECT_CALL(a, DoA(3)).With(_); in TEST()
1399 Expectation e4 = EXPECT_CALL(a, DoA(4)).Times(1); in TEST()
1400 Expectation e5 = EXPECT_CALL(a, DoA(5)).InSequence(s); in TEST()
1402 Expectation e6 = EXPECT_CALL(a, DoA(6)).After(e2); in TEST()
1403 Expectation e7 = EXPECT_CALL(a, DoA(7)).WillOnce(Return()); in TEST()
1404 Expectation e8 = EXPECT_CALL(a, DoA(8)).WillRepeatedly(Return()); in TEST()
1405 Expectation e9 = EXPECT_CALL(a, DoA(9)).RetiresOnSaturation(); in TEST()
1407 Expectation e10 = e2; // Copy ctor. in TEST()
1424 Expectation e1; in TEST()
1425 Expectation e2 = EXPECT_CALL(a, DoA(1)); in TEST()
1438 ::testing::StaticAssertTypeEq<Expectation, ExpectationSet::value_type>(); in TEST()
1444 Expectation e1; in TEST()
1445 const Expectation e2; in TEST()
1472 ExpectationSet es2 = Expectation(); in TEST()
1476 EXPECT_THAT(*(es1.begin()), Eq(Expectation())); in TEST()
1482 Expectation e1; in TEST()
1488 Expectation e2 = EXPECT_CALL(a, DoA(1)); in TEST()
1504 es += Expectation(); in TEST()
1518 es += Expectation(); in TEST()
1521 EXPECT_THAT(*it, Eq(Expectation())); in TEST()
1545 const Expectation e1 = EXPECT_CALL(a, DoA(1)); in TEST()
1546 const Expectation e2 = EXPECT_CALL(b, DoB()).Times(2).After(e1); in TEST()
1562 Expectation e1 = EXPECT_CALL(a, DoA(1)); in TEST()
1563 Expectation e2 = EXPECT_CALL(b, DoB()).After(e1); in TEST()
1582 Expectation e1 = EXPECT_CALL(a, DoA(1)); in TEST()
1583 Expectation e2 = EXPECT_CALL(b, DoB()).Times(2).After(e1); in TEST()
1604 Expectation e = EXPECT_CALL(a, DoA(1)); in TEST()
1623 Expectation e = EXPECT_CALL(a, DoA(1)); in TEST()
1640 Expectation e = EXPECT_CALL(a, DoA(1)); in TEST()
1656 Expectation e1 = EXPECT_CALL(a, DoA(1)); in TEST()
1657 Expectation e2 = EXPECT_CALL(a, DoA(2)); in TEST()
1658 Expectation e3 = EXPECT_CALL(a, DoA(3)); in TEST()
1670 Expectation e1 = EXPECT_CALL(a, DoA(1)); in TEST()
1671 Expectation e2 = EXPECT_CALL(a, DoA(2)); in TEST()
1672 Expectation e3 = EXPECT_CALL(a, DoA(3)); in TEST()
1693 Expectation e1 = EXPECT_CALL(a, DoA(1)); in TEST()
1694 Expectation e2 = EXPECT_CALL(a, DoA(2)); in TEST()
1714 Expectation e2 = EXPECT_CALL(a, DoA(2)); in TEST()