gmock-cardinalities.h
Go to the documentation of this file.
1 // Copyright 2007, Google Inc.
2 // All rights reserved.
3 //
4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are
6 // met:
7 //
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above
11 // copyright notice, this list of conditions and the following disclaimer
12 // in the documentation and/or other materials provided with the
13 // distribution.
14 // * Neither the name of Google Inc. nor the names of its
15 // contributors may be used to endorse or promote products derived from
16 // this software without specific prior written permission.
17 //
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 //
30 // Author: wan@google.com (Zhanyong Wan)
31 
32 // Google Mock - a framework for writing C++ mock classes.
33 //
34 // This file implements some commonly used cardinalities. More
35 // cardinalities can be defined by the user implementing the
36 // CardinalityInterface interface if necessary.
37 
38 #ifndef GMOCK_INCLUDE_GMOCK_GMOCK_CARDINALITIES_H_
39 #define GMOCK_INCLUDE_GMOCK_GMOCK_CARDINALITIES_H_
40 
41 #include <limits.h>
42 #include <ostream> // NOLINT
44 #include "gtest/gtest.h"
45 
46 namespace testing
47 {
48 
49 // To implement a cardinality Foo, define:
50 // 1. a class FooCardinality that implements the
51 // CardinalityInterface interface, and
52 // 2. a factory function that creates a Cardinality object from a
53 // const FooCardinality*.
54 //
55 // The two-level delegation design follows that of Matcher, providing
56 // consistency for extension developers. It also eases ownership
57 // management as Cardinality objects can now be copied like plain values.
58 
59 // The implementation of a cardinality.
60 class CardinalityInterface
61 {
62 public:
63  virtual ~CardinalityInterface() {}
64 
65  // Conservative estimate on the lower/upper bound of the number of
66  // calls allowed.
67  virtual int ConservativeLowerBound() const { return 0; }
68  virtual int ConservativeUpperBound() const { return INT_MAX; }
69 
70  // Returns true iff call_count calls will satisfy this cardinality.
71  virtual bool IsSatisfiedByCallCount(int call_count) const = 0;
72 
73  // Returns true iff call_count calls will saturate this cardinality.
74  virtual bool IsSaturatedByCallCount(int call_count) const = 0;
75 
76  // Describes self to an ostream.
77  virtual void DescribeTo(::std::ostream * os) const = 0;
78 };
79 
80 // A Cardinality is a copyable and IMMUTABLE (except by assignment)
81 // object that specifies how many times a mock function is expected to
82 // be called. The implementation of Cardinality is just a linked_ptr
83 // to const CardinalityInterface, so copying is fairly cheap.
84 // Don't inherit from Cardinality!
85 class GTEST_API_ Cardinality
86 {
87 public:
88  // Constructs a null cardinality. Needed for storing Cardinality
89  // objects in STL containers.
91 
92  // Constructs a Cardinality from its implementation.
93  explicit Cardinality(const CardinalityInterface * impl) : impl_(impl) {}
94 
95  // Conservative estimate on the lower/upper bound of the number of
96  // calls allowed.
97  int ConservativeLowerBound() const { return impl_->ConservativeLowerBound(); }
98  int ConservativeUpperBound() const { return impl_->ConservativeUpperBound(); }
99 
100  // Returns true iff call_count calls will satisfy this cardinality.
101  bool IsSatisfiedByCallCount(int call_count) const
102  {
103  return impl_->IsSatisfiedByCallCount(call_count);
104  }
105 
106  // Returns true iff call_count calls will saturate this cardinality.
107  bool IsSaturatedByCallCount(int call_count) const
108  {
109  return impl_->IsSaturatedByCallCount(call_count);
110  }
111 
112  // Returns true iff call_count calls will over-saturate this
113  // cardinality, i.e. exceed the maximum number of allowed calls.
114  bool IsOverSaturatedByCallCount(int call_count) const
115  {
116  return impl_->IsSaturatedByCallCount(call_count) &&
117  !impl_->IsSatisfiedByCallCount(call_count);
118  }
119 
120  // Describes self to an ostream
121  void DescribeTo(::std::ostream * os) const { impl_->DescribeTo(os); }
122 
123  // Describes the given actual call count to an ostream.
124  static void DescribeActualCallCountTo(int actual_call_count,
125  ::std::ostream * os);
126 
127 private:
129 };
130 
131 // Creates a cardinality that allows at least n calls.
132 GTEST_API_ Cardinality AtLeast(int n);
133 
134 // Creates a cardinality that allows at most n calls.
135 GTEST_API_ Cardinality AtMost(int n);
136 
137 // Creates a cardinality that allows any number of calls.
138 GTEST_API_ Cardinality AnyNumber();
139 
140 // Creates a cardinality that allows between min and max calls.
141 GTEST_API_ Cardinality Between(int min, int max);
142 
143 // Creates a cardinality that allows exactly n calls.
144 GTEST_API_ Cardinality Exactly(int n);
145 
146 // Creates a cardinality from its implementation.
147 inline Cardinality MakeCardinality(const CardinalityInterface * c)
148 {
149  return Cardinality(c);
150 }
151 
152 } // namespace testing
153 
154 #endif // GMOCK_INCLUDE_GMOCK_GMOCK_CARDINALITIES_H_
GTEST_API_ Cardinality AtLeast(int n)
#define GTEST_API_
GTEST_API_ Cardinality AtMost(int n)
void DescribeTo(::std::ostream *os) const
virtual bool IsSatisfiedByCallCount(int call_count) const =0
virtual int ConservativeUpperBound() const
Cardinality(const CardinalityInterface *impl)
bool IsOverSaturatedByCallCount(int call_count) const
virtual bool IsSaturatedByCallCount(int call_count) const =0
int ConservativeUpperBound() const
virtual int ConservativeLowerBound() const
Cardinality MakeCardinality(const CardinalityInterface *c)
GTEST_API_ Cardinality Between(int min, int max)
GTEST_API_ Cardinality Exactly(int n)
bool IsSaturatedByCallCount(int call_count) const
GTEST_API_ Cardinality AnyNumber()
bool IsSatisfiedByCallCount(int call_count) const
virtual void DescribeTo(::std::ostream *os) const =0
int ConservativeLowerBound() const


ros_opcua_impl_freeopcua
Author(s): Denis Štogl
autogenerated on Tue Jan 19 2021 03:06:05