Lines Matching refs:ExpectationSet
78 using testing::ExpectationSet;
1403 ::testing::StaticAssertTypeEq<Expectation, ExpectationSet::value_type>(); in TEST()
1411 ExpectationSet es1; // Default ctor. in TEST()
1412 ExpectationSet es2 = EXPECT_CALL(a, DoA(1)); // Ctor from EXPECT_CALL. in TEST()
1413 ExpectationSet es3 = e1; // Ctor from Expectation. in TEST()
1414 ExpectationSet es4(e1); // Ctor from Expectation; alternative syntax. in TEST()
1415 ExpectationSet es5 = e2; // Ctor from const Expectation. in TEST()
1416 ExpectationSet es6(e2); // Ctor from const Expectation; alternative syntax. in TEST()
1417 ExpectationSet es7 = es2; // Copy ctor. in TEST()
1436 ExpectationSet es1; in TEST()
1437 ExpectationSet es2 = Expectation(); in TEST()
1446 ExpectationSet es1; in TEST()
1457 ExpectationSet::const_iterator it1 = es1.begin(); in TEST()
1458 ExpectationSet::const_iterator it2 = it1; in TEST()
1466 ExpectationSet es; in TEST()
1480 ExpectationSet es; in TEST()
1484 ExpectationSet::const_iterator it = es.begin(); in TEST()
1495 ExpectationSet es; in TEST()
1559 const ExpectationSet es = EXPECT_CALL(a, DoA(2)); in TEST()
1613 ExpectationSet es1 = EXPECT_CALL(a, DoA(4)); in TEST()
1614 ExpectationSet es2 = EXPECT_CALL(a, DoA(5)); in TEST()
1631 ExpectationSet es; in TEST()
1649 ExpectationSet es1 = EXPECT_CALL(a, DoA(1)); in TEST()