Home | History | Annotate | Download | only in test

Lines Matching refs:After

372   }, ".Times() cannot appear after ");
408 .After(e)
410 }, ".InSequence() cannot appear after ");
423 }, ".InSequence() cannot appear after ");
435 .After(e);
436 }, ".After() cannot appear after ");
470 }, ".WillOnce() cannot appear after ");
507 }, ".WillRepeatedly() cannot appear after ");
1367 Expectation e6 = EXPECT_CALL(a, DoA(6)).After(e2);
1491 // Tests the .After() clause.
1499 .After(es);
1514 .After(e1);
1515 EXPECT_CALL(a, DoA(2)).After(e2);
1530 .After(e1);
1532 .After(e2)
1561 .After(e, es)
1573 // .After() can be combined with .InSequence().
1580 .InSequence(s).After(e)
1590 // .After() can be called multiple times.
1597 .After(e1)
1598 .After(e2)
1599 .After(e3);
1607 // .After() accepts up to 5 arguments.
1616 .After(e1, e2, e3, es1, es2);
1626 // .After() allows input to contain duplicated Expectations.
1635 .After(e1, e2, es, e1)
1645 // An Expectation added to an ExpectationSet after it has been used in
1646 // an .After() has no effect.
1652 .After(es1);
1661 // after a mock object owning one of their pre-requisites has died.
2388 // object after VerifyAndClear() has been called on it.