tesseract v5.3.3.20231005
gmock-cardinalities.h File Reference
#include <limits.h>
#include <memory>
#include <ostream>
#include "gmock/internal/gmock-port.h"
#include "gtest/gtest.h"

Go to the source code of this file.

Functions

 GTEST_DISABLE_MSC_WARNINGS_PUSH_ (4251) namespace testing
 

Function Documentation

◆ GTEST_DISABLE_MSC_WARNINGS_PUSH_()

GTEST_DISABLE_MSC_WARNINGS_PUSH_ ( 4251  )

Definition at line 48 of file gmock-cardinalities.h.

51 {
52
53// To implement a cardinality Foo, define:
54// 1. a class FooCardinality that implements the
55// CardinalityInterface interface, and
56// 2. a factory function that creates a Cardinality object from a
57// const FooCardinality*.
58//
59// The two-level delegation design follows that of Matcher, providing
60// consistency for extension developers. It also eases ownership
61// management as Cardinality objects can now be copied like plain values.
62
63// The implementation of a cardinality.
64class CardinalityInterface {
65 public:
66 virtual ~CardinalityInterface() {}
67
68 // Conservative estimate on the lower/upper bound of the number of
69 // calls allowed.
70 virtual int ConservativeLowerBound() const { return 0; }
71 virtual int ConservativeUpperBound() const { return INT_MAX; }
72
73 // Returns true if and only if call_count calls will satisfy this
74 // cardinality.
75 virtual bool IsSatisfiedByCallCount(int call_count) const = 0;
76
77 // Returns true if and only if call_count calls will saturate this
78 // cardinality.
79 virtual bool IsSaturatedByCallCount(int call_count) const = 0;
80
81 // Describes self to an ostream.
82 virtual void DescribeTo(::std::ostream* os) const = 0;
83};
84
85// A Cardinality is a copyable and IMMUTABLE (except by assignment)
86// object that specifies how many times a mock function is expected to
87// be called. The implementation of Cardinality is just a std::shared_ptr
88// to const CardinalityInterface. Don't inherit from Cardinality!
89class GTEST_API_ Cardinality {
90 public:
91 // Constructs a null cardinality. Needed for storing Cardinality
92 // objects in STL containers.
93 Cardinality() {}
94
95 // Constructs a Cardinality from its implementation.
96 explicit Cardinality(const CardinalityInterface* impl) : impl_(impl) {}
97
98 // Conservative estimate on the lower/upper bound of the number of
99 // calls allowed.
100 int ConservativeLowerBound() const { return impl_->ConservativeLowerBound(); }
101 int ConservativeUpperBound() const { return impl_->ConservativeUpperBound(); }
102
103 // Returns true if and only if call_count calls will satisfy this
104 // cardinality.
105 bool IsSatisfiedByCallCount(int call_count) const {
106 return impl_->IsSatisfiedByCallCount(call_count);
107 }
108
109 // Returns true if and only if call_count calls will saturate this
110 // cardinality.
111 bool IsSaturatedByCallCount(int call_count) const {
112 return impl_->IsSaturatedByCallCount(call_count);
113 }
114
115 // Returns true if and only if call_count calls will over-saturate this
116 // cardinality, i.e. exceed the maximum number of allowed calls.
117 bool IsOverSaturatedByCallCount(int call_count) const {
118 return impl_->IsSaturatedByCallCount(call_count) &&
119 !impl_->IsSatisfiedByCallCount(call_count);
120 }
121
122 // Describes self to an ostream
123 void DescribeTo(::std::ostream* os) const { impl_->DescribeTo(os); }
124
125 // Describes the given actual call count to an ostream.
126 static void DescribeActualCallCountTo(int actual_call_count,
127 ::std::ostream* os);
128
129 private:
130 std::shared_ptr<const CardinalityInterface> impl_;
131};
132
133// Creates a cardinality that allows at least n calls.
134GTEST_API_ Cardinality AtLeast(int n);
135
136// Creates a cardinality that allows at most n calls.
137GTEST_API_ Cardinality AtMost(int n);
138
139// Creates a cardinality that allows any number of calls.
140GTEST_API_ Cardinality AnyNumber();
141
142// Creates a cardinality that allows between min and max calls.
143GTEST_API_ Cardinality Between(int min, int max);
144
145// Creates a cardinality that allows exactly n calls.
146GTEST_API_ Cardinality Exactly(int n);
147
148// Creates a cardinality from its implementation.
149inline Cardinality MakeCardinality(const CardinalityInterface* c) {
150 return Cardinality(c);
151}
152
153} // namespace testing
#define GTEST_API_
Definition: gtest-port.h:779
GTEST_API_ Cardinality AtLeast(int n)
GTEST_API_ Cardinality Between(int min, int max)
GTEST_API_ Cardinality AtMost(int n)
GTEST_API_ Cardinality AnyNumber()
GTEST_API_ Cardinality Exactly(int n)