Searched refs:Expectation (Results 1 - 3 of 3) sorted by relevance

/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-spec-builders.h83 class Expectation;
101 // Helper class for testing the Expectation class template.
224 // Returns an Expectation object that references and co-owns exp,
226 Expectation GetHandleOf(ExpectationBase* exp);
470 // Expectation e1 = EXPECT_CALL(...)...;
478 // - Constness is shallow: a const Expectation object itself cannot
487 class GTEST_API_ Expectation {
490 Expectation();
492 ~Expectation();
495 // Expectation
[all...]
/gem5/ext/googletest/googlemock/test/
H A Dgmock-spec-builders_test.cc51 // Helper class for testing the Expectation class template.
77 using testing::Expectation;
423 Expectation e = EXPECT_CALL(a, DoA(1))
450 Expectation e = EXPECT_CALL(a, DoA(1));
1407 // Tests Expectation.
1411 Expectation e1; // Default ctor.
1414 Expectation e2 = EXPECT_CALL(a, DoA(2));
1415 Expectation e3 = EXPECT_CALL(a, DoA(3)).With(_);
1418 Expectation e4 = EXPECT_CALL(a, DoA(4)).Times(1);
1419 Expectation e
[all...]
/gem5/ext/googletest/googlemock/src/
H A Dgmock-spec-builders.cc447 // Returns an Expectation object that references and co-owns exp,
449 Expectation UntypedFunctionMockerBase::GetHandleOf(ExpectationBase* exp) {
454 return Expectation(*it);
459 return Expectation();
785 Expectation::Expectation() {} function in class:Expectation
787 Expectation::Expectation( function in class:Expectation
791 Expectation::~Expectation() {}
[all...]

Completed in 14 milliseconds