@@ -1315,32 +1315,30 @@ how you can define a matcher to do it:
1315
1315
1316
1316
```cpp
1317
1317
using ::testing::Matcher;
1318
- using ::testing::MatcherInterface;
1319
- using ::testing::MatchResultListener;
1320
1318
1321
- class BarPlusBazEqMatcher : public MatcherInterface<const Foo&> {
1319
+ class BarPlusBazEqMatcher {
1322
1320
public:
1323
1321
explicit BarPlusBazEqMatcher(int expected_sum)
1324
1322
: expected_sum_(expected_sum) {}
1325
1323
1326
1324
bool MatchAndExplain(const Foo& foo,
1327
- MatchResultListener * /* listener */) const override {
1325
+ std::ostream * /* listener */) const {
1328
1326
return (foo.bar() + foo.baz()) == expected_sum_;
1329
1327
}
1330
1328
1331
- void DescribeTo(std::ostream* os) const override {
1332
- * os << "bar() + baz() equals " << expected_sum_;
1329
+ void DescribeTo(std::ostream& os) const {
1330
+ os << "bar() + baz() equals " << expected_sum_;
1333
1331
}
1334
1332
1335
- void DescribeNegationTo(std::ostream* os) const override {
1336
- * os << "bar() + baz() does not equal " << expected_sum_;
1333
+ void DescribeNegationTo(std::ostream& os) const {
1334
+ os << "bar() + baz() does not equal " << expected_sum_;
1337
1335
}
1338
1336
private:
1339
1337
const int expected_sum_;
1340
1338
};
1341
1339
1342
1340
Matcher<const Foo&> BarPlusBazEq(int expected_sum) {
1343
- return MakeMatcher(new BarPlusBazEqMatcher(expected_sum) );
1341
+ return BarPlusBazEqMatcher(expected_sum);
1344
1342
}
1345
1343
1346
1344
...
@@ -3535,51 +3533,39 @@ MATCHER_P2(Blah, a, b, description_string_2) { ... }
3535
3533
```
3536
3534
3537
3535
While it's tempting to always use the `MATCHER*` macros when defining a new
3538
- matcher, you should also consider implementing `MatcherInterface` or using
3539
- `MakePolymorphicMatcher()` instead (see the recipes that follow), especially if
3540
- you need to use the matcher a lot. While these approaches require more work,
3541
- they give you more control on the types of the value being matched and the
3542
- matcher parameters, which in general leads to better compiler error messages
3543
- that pay off in the long run. They also allow overloading matchers based on
3544
- parameter types (as opposed to just based on the number of parameters).
3536
+ matcher, you should also consider implementing the matcher interface directly
3537
+ instead (see the recipes that follow), especially if you need to use the matcher
3538
+ a lot. While these approaches require more work, they give you more control on
3539
+ the types of the value being matched and the matcher parameters, which in
3540
+ general leads to better compiler error messages that pay off in the long run.
3541
+ They also allow overloading matchers based on parameter types (as opposed to
3542
+ just based on the number of parameters).
3545
3543
3546
3544
### Writing New Monomorphic Matchers
3547
3545
3548
- A matcher of argument type `T` implements `::testing::MatcherInterface<T> ` and
3549
- does two things: it tests whether a value of type `T` matches the matcher, and
3550
- can describe what kind of values it matches. The latter ability is used for
3546
+ A matcher of argument type `T` implements the matcher interface for `T ` and does
3547
+ two things: it tests whether a value of type `T` matches the matcher, and can
3548
+ describe what kind of values it matches. The latter ability is used for
3551
3549
generating readable error messages when expectations are violated.
3552
3550
3553
- The interface looks like this :
3551
+ A matcher of `T` must declare a typedef like :
3554
3552
3555
3553
```cpp
3556
- class MatchResultListener {
3557
- public:
3558
- ...
3559
- // Streams x to the underlying ostream; does nothing if the ostream
3560
- // is NULL.
3561
- template <typename T>
3562
- MatchResultListener& operator<<(const T& x);
3563
-
3564
- // Returns the underlying ostream.
3565
- std::ostream* stream();
3566
- };
3567
-
3568
- template <typename T>
3569
- class MatcherInterface {
3570
- public:
3571
- virtual ~MatcherInterface();
3554
+ using is_gtest_matcher = void;
3555
+ ```
3572
3556
3573
- // Returns true if and only if the matcher matches x; also explains the match
3574
- // result to 'listener'.
3575
- virtual bool MatchAndExplain(T x, MatchResultListener* listener) const = 0;
3557
+ and supports the following operations:
3576
3558
3577
- // Describes this matcher to an ostream.
3578
- virtual void DescribeTo(std::ostream* os) const = 0;
3559
+ ```cpp
3560
+ // Match a value and optionally explain into an ostream.
3561
+ bool matched = matcher.MatchAndExplain(value, maybe_os);
3562
+ // where `value` is of type `T` and
3563
+ // `maybe_os` is of type `std::ostream*`, where it can be null if the caller
3564
+ // is not interested in there textual explanation.
3579
3565
3580
- // Describes the negation of this matcher to an ostream.
3581
- virtual void DescribeNegationTo(std::ostream* os) const ;
3582
- };
3566
+ matcher.DescribeTo(os);
3567
+ matcher. DescribeNegationTo(os);
3568
+ // where `os` is of type `std::ostream*`.
3583
3569
```
3584
3570
3585
3571
If you need a custom matcher but `Truly()` is not a good option (for example,
@@ -3594,46 +3580,41 @@ For example, you can define a matcher to test whether an `int` is divisible by 7
3594
3580
and then use it like this:
3595
3581
3596
3582
```cpp
3597
- using ::testing::MakeMatcher;
3598
3583
using ::testing::Matcher;
3599
- using ::testing::MatcherInterface;
3600
- using ::testing::MatchResultListener;
3601
3584
3602
- class DivisibleBy7Matcher : public MatcherInterface<int> {
3585
+ class DivisibleBy7Matcher {
3603
3586
public:
3604
- bool MatchAndExplain(int n,
3605
- MatchResultListener* /* listener */) const override {
3587
+ bool MatchAndExplain(int n, std::ostream*) const {
3606
3588
return (n % 7) == 0;
3607
3589
}
3608
3590
3609
- void DescribeTo(std::ostream* os) const override {
3591
+ void DescribeTo(std::ostream* os) const {
3610
3592
*os << "is divisible by 7";
3611
3593
}
3612
3594
3613
- void DescribeNegationTo(std::ostream* os) const override {
3595
+ void DescribeNegationTo(std::ostream* os) const {
3614
3596
*os << "is not divisible by 7";
3615
3597
}
3616
3598
};
3617
3599
3618
3600
Matcher<int> DivisibleBy7() {
3619
- return MakeMatcher(new DivisibleBy7Matcher);
3601
+ return DivisibleBy7Matcher( );
3620
3602
}
3621
3603
3622
3604
...
3623
3605
EXPECT_CALL(foo, Bar(DivisibleBy7()));
3624
3606
```
3625
3607
3626
3608
You may improve the matcher message by streaming additional information to the
3627
- `listener ` argument in `MatchAndExplain()`:
3609
+ `os ` argument in `MatchAndExplain()`:
3628
3610
3629
3611
```cpp
3630
- class DivisibleBy7Matcher : public MatcherInterface<int> {
3612
+ class DivisibleBy7Matcher {
3631
3613
public:
3632
- bool MatchAndExplain(int n,
3633
- MatchResultListener* listener) const override {
3614
+ bool MatchAndExplain(int n, std::ostream* os) const {
3634
3615
const int remainder = n % 7;
3635
- if (remainder != 0) {
3636
- *listener << "the remainder is " << remainder;
3616
+ if (remainder != 0 && os != nullptr ) {
3617
+ *os << "the remainder is " << remainder;
3637
3618
}
3638
3619
return remainder == 0;
3639
3620
}
@@ -3651,13 +3632,79 @@ Expected: is divisible by 7
3651
3632
3652
3633
### Writing New Polymorphic Matchers
3653
3634
3654
- You've learned how to write your own matchers in the previous recipe. Just one
3655
- problem: a matcher created using `MakeMatcher()` only works for one particular
3656
- type of arguments. If you want a *polymorphic* matcher that works with arguments
3657
- of several types (for instance, `Eq(x)` can be used to match a *`value`* as long
3658
- as `value == x` compiles -- *`value`* and `x` don't have to share the same
3659
- type), you can learn the trick from `testing/base/public/gmock-matchers.h` but
3660
- it's a bit involved.
3635
+ Expanding what we learned above to *polymorphic* matchers is now just as simple
3636
+ as adding templates in the right place.
3637
+
3638
+ ```cpp
3639
+
3640
+ class NotNullMatcher {
3641
+ public:
3642
+ // To implement a polymorphic matcher, we just need to make MatchAndExplain a
3643
+ // template on its first argument.
3644
+
3645
+ // In this example, we want to use NotNull() with any pointer, so
3646
+ // MatchAndExplain() accepts a pointer of any type as its first argument.
3647
+ // In general, you can define MatchAndExplain() as an ordinary method or
3648
+ // a method template, or even overload it.
3649
+ template <typename T>
3650
+ bool MatchAndExplain(T* p, std::ostream*) const {
3651
+ return p != nullptr;
3652
+ }
3653
+
3654
+ // Describes the property of a value matching this matcher.
3655
+ void DescribeTo(std::ostream& os) const { *os << "is not NULL"; }
3656
+
3657
+ // Describes the property of a value NOT matching this matcher.
3658
+ void DescribeNegationTo(std::ostream* os) const { *os << "is NULL"; }
3659
+ };
3660
+
3661
+ NotNullMatcher NotNull() {
3662
+ return NotNullMatcher();
3663
+ }
3664
+
3665
+ ...
3666
+
3667
+ EXPECT_CALL(foo, Bar(NotNull())); // The argument must be a non-NULL pointer.
3668
+ ```
3669
+
3670
+ ### Legacy Matcher Implementation
3671
+
3672
+ Defining matchers used to be somewhat more complicated, in which it required
3673
+ several supporting classes and virtual functions. To implement a matcher for
3674
+ type `T` using the legacy API you have to derive from `MatcherInterface<T>` and
3675
+ call `MakeMatcher` to construct the object.
3676
+
3677
+ The interface looks like this:
3678
+
3679
+ ```cpp
3680
+ class MatchResultListener {
3681
+ public:
3682
+ ...
3683
+ // Streams x to the underlying ostream; does nothing if the ostream
3684
+ // is NULL.
3685
+ template <typename T>
3686
+ MatchResultListener& operator<<(const T& x);
3687
+
3688
+ // Returns the underlying ostream.
3689
+ std::ostream* stream();
3690
+ };
3691
+
3692
+ template <typename T>
3693
+ class MatcherInterface {
3694
+ public:
3695
+ virtual ~MatcherInterface();
3696
+
3697
+ // Returns true if and only if the matcher matches x; also explains the match
3698
+ // result to 'listener'.
3699
+ virtual bool MatchAndExplain(T x, MatchResultListener* listener) const = 0;
3700
+
3701
+ // Describes this matcher to an ostream.
3702
+ virtual void DescribeTo(std::ostream* os) const = 0;
3703
+
3704
+ // Describes the negation of this matcher to an ostream.
3705
+ virtual void DescribeNegationTo(std::ostream* os) const;
3706
+ };
3707
+ ```
3661
3708
3662
3709
Fortunately, most of the time you can define a polymorphic matcher easily with
3663
3710
the help of `MakePolymorphicMatcher()`. Here's how you can define `NotNull()` as
0 commit comments