Home
last modified time | relevance | path

Searched refs:ExpectationBase (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/googletest/googlemock/src/
H A Dgmock-spec-builders.cc77 ExpectationBase::ExpectationBase(const char* a_file, int a_line, in ExpectationBase() function in testing::internal::ExpectationBase
93 ExpectationBase::~ExpectationBase() {} in ~ExpectationBase()
103 void ExpectationBase::RetireAllPreRequisites() in RetireAllPreRequisites()
111 ::std::vector<ExpectationBase*> expectations(1, this); in RetireAllPreRequisites()
113 ExpectationBase* exp = expectations.back(); in RetireAllPreRequisites()
119 ExpectationBase* next = it->expectation_base().get(); in RetireAllPreRequisites()
130 bool ExpectationBase::AllPrerequisitesAreSatisfied() const in AllPrerequisitesAreSatisfied()
135 const ExpectationBase* exp = expectations.back(); in AllPrerequisitesAreSatisfied()
155 const ExpectationBase* exp = expectations.back(); in FindUnsatisfiedPrerequisites()
204 void ExpectationBase::CheckActionCountIfNotDone() const in CheckActionCountIfNotDone()
[all …]
/freebsd-12.1/contrib/googletest/googlemock/include/gmock/
H A Dgmock-spec-builders.h99 class ExpectationBase; variable
226 Expectation GetHandleOf(ExpectationBase* exp);
512 Expectation(internal::ExpectationBase& exp); // NOLINT
527 friend class ::testing::internal::ExpectationBase;
550 const internal::linked_ptr<internal::ExpectationBase>&
699 class GTEST_API_ ExpectationBase {
704 virtual ~ExpectationBase();
883 GTEST_DISALLOW_ASSIGN_(ExpectationBase);
888 class TypedExpectation : public ExpectationBase {
897 : ExpectationBase(a_file, a_line, a_source_text), in TypedExpectation()
[all …]
/freebsd-12.1/contrib/googletest/googlemock/test/
H A Dgmock-spec-builders_test.cc54 void SetCallCount(int n, ExpectationBase* exp) { in SetCallCount()