Lines Matching refs:Expectation

77 using testing::Expectation;
415 Expectation e = EXPECT_CALL(a, DoA(1)) in TEST()
442 Expectation e = EXPECT_CALL(a, DoA(1)); in TEST()
1402 Expectation e1; // Default ctor. in TEST()
1405 Expectation e2 = EXPECT_CALL(a, DoA(2)); in TEST()
1406 Expectation e3 = EXPECT_CALL(a, DoA(3)).With(_); in TEST()
1409 Expectation e4 = EXPECT_CALL(a, DoA(4)).Times(1); in TEST()
1410 Expectation e5 = EXPECT_CALL(a, DoA(5)).InSequence(s); in TEST()
1412 Expectation e6 = EXPECT_CALL(a, DoA(6)).After(e2); in TEST()
1413 Expectation e7 = EXPECT_CALL(a, DoA(7)).WillOnce(Return()); in TEST()
1414 Expectation e8 = EXPECT_CALL(a, DoA(8)).WillRepeatedly(Return()); in TEST()
1415 Expectation e9 = EXPECT_CALL(a, DoA(9)).RetiresOnSaturation(); in TEST()
1417 Expectation e10 = e2; // Copy ctor. in TEST()
1434 Expectation e1; in TEST()
1435 Expectation e2 = EXPECT_CALL(a, DoA(1)); in TEST()
1448 ::testing::StaticAssertTypeEq<Expectation, ExpectationSet::value_type>(); in TEST()
1454 Expectation e1; in TEST()
1455 const Expectation e2; in TEST()
1482 ExpectationSet es2 = Expectation(); in TEST()
1486 EXPECT_THAT(*(es1.begin()), Eq(Expectation())); in TEST()
1492 Expectation e1; in TEST()
1498 Expectation e2 = EXPECT_CALL(a, DoA(1)); in TEST()
1514 es += Expectation(); in TEST()
1528 es += Expectation(); in TEST()
1531 EXPECT_THAT(*it, Eq(Expectation())); in TEST()
1556 const Expectation e1 = EXPECT_CALL(a, DoA(1)); in TEST()
1557 const Expectation e2 = EXPECT_CALL(b, DoB()) in TEST()
1575 Expectation e1 = EXPECT_CALL(a, DoA(1)); in TEST()
1576 Expectation e2 = EXPECT_CALL(b, DoB()) in TEST()
1597 Expectation e1 = EXPECT_CALL(a, DoA(1)); in TEST()
1598 Expectation e2 = EXPECT_CALL(b, DoB()) in TEST()
1623 Expectation e = EXPECT_CALL(a, DoA(1)); in TEST()
1643 Expectation e = EXPECT_CALL(a, DoA(1)); in TEST()
1661 Expectation e = EXPECT_CALL(a, DoA(1)); in TEST()
1679 Expectation e1 = EXPECT_CALL(a, DoA(1)); in TEST()
1680 Expectation e2 = EXPECT_CALL(a, DoA(2)); in TEST()
1681 Expectation e3 = EXPECT_CALL(a, DoA(3)); in TEST()
1696 Expectation e1 = EXPECT_CALL(a, DoA(1)); in TEST()
1697 Expectation e2 = EXPECT_CALL(a, DoA(2)); in TEST()
1698 Expectation e3 = EXPECT_CALL(a, DoA(3)); in TEST()
1721 Expectation e1 = EXPECT_CALL(a, DoA(1)); in TEST()
1722 Expectation e2 = EXPECT_CALL(a, DoA(2)); in TEST()
1743 Expectation e2 = EXPECT_CALL(a, DoA(2)); in TEST()