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()
1368 Expectation e1; // Default ctor. in TEST()
1371 Expectation e2 = EXPECT_CALL(a, DoA(2)); in TEST()
1372 Expectation e3 = EXPECT_CALL(a, DoA(3)).With(_); in TEST()
1375 Expectation e4 = EXPECT_CALL(a, DoA(4)).Times(1); in TEST()
1376 Expectation e5 = EXPECT_CALL(a, DoA(5)).InSequence(s); in TEST()
1378 Expectation e6 = EXPECT_CALL(a, DoA(6)).After(e2); in TEST()
1379 Expectation e7 = EXPECT_CALL(a, DoA(7)).WillOnce(Return()); in TEST()
1380 Expectation e8 = EXPECT_CALL(a, DoA(8)).WillRepeatedly(Return()); in TEST()
1381 Expectation e9 = EXPECT_CALL(a, DoA(9)).RetiresOnSaturation(); in TEST()
1383 Expectation e10 = e2; // Copy ctor. in TEST()
1400 Expectation e1; in TEST()
1401 Expectation e2 = EXPECT_CALL(a, DoA(1)); in TEST()
1414 ::testing::StaticAssertTypeEq<Expectation, ExpectationSet::value_type>(); in TEST()
1420 Expectation e1; in TEST()
1421 const Expectation e2; in TEST()
1448 ExpectationSet es2 = Expectation(); in TEST()
1452 EXPECT_THAT(*(es1.begin()), Eq(Expectation())); in TEST()
1458 Expectation e1; in TEST()
1464 Expectation e2 = EXPECT_CALL(a, DoA(1)); in TEST()
1480 es += Expectation(); in TEST()
1494 es += Expectation(); in TEST()
1497 EXPECT_THAT(*it, Eq(Expectation())); in TEST()
1522 const Expectation e1 = EXPECT_CALL(a, DoA(1)); in TEST()
1523 const Expectation e2 = EXPECT_CALL(b, DoB()) in TEST()
1538 Expectation e1 = EXPECT_CALL(a, DoA(1)); in TEST()
1539 Expectation e2 = EXPECT_CALL(b, DoB()) in TEST()
1569 Expectation e = EXPECT_CALL(a, DoA(1)); in TEST()
1588 Expectation e = EXPECT_CALL(a, DoA(1)); in TEST()
1604 Expectation e1 = EXPECT_CALL(a, DoA(1)); in TEST()
1605 Expectation e2 = EXPECT_CALL(a, DoA(2)); in TEST()
1606 Expectation e3 = EXPECT_CALL(a, DoA(3)); in TEST()
1621 Expectation e1 = EXPECT_CALL(a, DoA(1)); in TEST()
1622 Expectation e2 = EXPECT_CALL(a, DoA(2)); in TEST()
1623 Expectation e3 = EXPECT_CALL(a, DoA(3)); in TEST()
1640 Expectation e1 = EXPECT_CALL(a, DoA(1)); in TEST()
1641 Expectation e2 = EXPECT_CALL(a, DoA(2)); in TEST()
1661 Expectation e2 = EXPECT_CALL(a, DoA(2)); in TEST()