reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

utils/unittest/googlemock/src/gmock-cardinalities.cc
   54         max_(max >= min_ ? max : min_) {
   54         max_(max >= min_ ? max : min_) {
   74   virtual int ConservativeLowerBound() const { return min_; }
   78     return min_ <= call_count && call_count <= max_;
  109   if (min_ == 0) {
  117   } else if (min_ == max_) {
  118     *os << "called " << FormatTimes(min_);
  120     *os << "called at least " << FormatTimes(min_);
  123     *os << "called between " << min_ << " and " << max_ << " times";