1*481dde66SAndroid Build Coastguard Worker# Matchers Reference 2*481dde66SAndroid Build Coastguard Worker 3*481dde66SAndroid Build Coastguard WorkerA **matcher** matches a *single* argument. You can use it inside `ON_CALL()` or 4*481dde66SAndroid Build Coastguard Worker`EXPECT_CALL()`, or use it to validate a value directly using two macros: 5*481dde66SAndroid Build Coastguard Worker 6*481dde66SAndroid Build Coastguard Worker| Macro | Description | 7*481dde66SAndroid Build Coastguard Worker| :----------------------------------- | :------------------------------------ | 8*481dde66SAndroid Build Coastguard Worker| `EXPECT_THAT(actual_value, matcher)` | Asserts that `actual_value` matches `matcher`. | 9*481dde66SAndroid Build Coastguard Worker| `ASSERT_THAT(actual_value, matcher)` | The same as `EXPECT_THAT(actual_value, matcher)`, except that it generates a **fatal** failure. | 10*481dde66SAndroid Build Coastguard Worker 11*481dde66SAndroid Build Coastguard Worker{: .callout .warning} 12*481dde66SAndroid Build Coastguard Worker**WARNING:** Equality matching via `EXPECT_THAT(actual_value, expected_value)` 13*481dde66SAndroid Build Coastguard Workeris supported, however note that implicit conversions can cause surprising 14*481dde66SAndroid Build Coastguard Workerresults. For example, `EXPECT_THAT(some_bool, "some string")` will compile and 15*481dde66SAndroid Build Coastguard Workermay pass unintentionally. 16*481dde66SAndroid Build Coastguard Worker 17*481dde66SAndroid Build Coastguard Worker**BEST PRACTICE:** Prefer to make the comparison explicit via 18*481dde66SAndroid Build Coastguard Worker`EXPECT_THAT(actual_value, Eq(expected_value))` or `EXPECT_EQ(actual_value, 19*481dde66SAndroid Build Coastguard Workerexpected_value)`. 20*481dde66SAndroid Build Coastguard Worker 21*481dde66SAndroid Build Coastguard WorkerBuilt-in matchers (where `argument` is the function argument, e.g. 22*481dde66SAndroid Build Coastguard Worker`actual_value` in the example above, or when used in the context of 23*481dde66SAndroid Build Coastguard Worker`EXPECT_CALL(mock_object, method(matchers))`, the arguments of `method`) are 24*481dde66SAndroid Build Coastguard Workerdivided into several categories. All matchers are defined in the `::testing` 25*481dde66SAndroid Build Coastguard Workernamespace unless otherwise noted. 26*481dde66SAndroid Build Coastguard Worker 27*481dde66SAndroid Build Coastguard Worker## Wildcard 28*481dde66SAndroid Build Coastguard Worker 29*481dde66SAndroid Build Coastguard WorkerMatcher | Description 30*481dde66SAndroid Build Coastguard Worker:-------------------------- | :----------------------------------------------- 31*481dde66SAndroid Build Coastguard Worker`_` | `argument` can be any value of the correct type. 32*481dde66SAndroid Build Coastguard Worker`A<type>()` or `An<type>()` | `argument` can be any value of type `type`. 33*481dde66SAndroid Build Coastguard Worker 34*481dde66SAndroid Build Coastguard Worker## Generic Comparison 35*481dde66SAndroid Build Coastguard Worker 36*481dde66SAndroid Build Coastguard Worker| Matcher | Description | 37*481dde66SAndroid Build Coastguard Worker| :--------------------- | :-------------------------------------------------- | 38*481dde66SAndroid Build Coastguard Worker| `Eq(value)` or `value` | `argument == value` | 39*481dde66SAndroid Build Coastguard Worker| `Ge(value)` | `argument >= value` | 40*481dde66SAndroid Build Coastguard Worker| `Gt(value)` | `argument > value` | 41*481dde66SAndroid Build Coastguard Worker| `Le(value)` | `argument <= value` | 42*481dde66SAndroid Build Coastguard Worker| `Lt(value)` | `argument < value` | 43*481dde66SAndroid Build Coastguard Worker| `Ne(value)` | `argument != value` | 44*481dde66SAndroid Build Coastguard Worker| `IsFalse()` | `argument` evaluates to `false` in a Boolean context. | 45*481dde66SAndroid Build Coastguard Worker| `IsTrue()` | `argument` evaluates to `true` in a Boolean context. | 46*481dde66SAndroid Build Coastguard Worker| `IsNull()` | `argument` is a `NULL` pointer (raw or smart). | 47*481dde66SAndroid Build Coastguard Worker| `NotNull()` | `argument` is a non-null pointer (raw or smart). | 48*481dde66SAndroid Build Coastguard Worker| `Optional(m)` | `argument` is `optional<>` that contains a value matching `m`. (For testing whether an `optional<>` is set, check for equality with `nullopt`. You may need to use `Eq(nullopt)` if the inner type doesn't have `==`.)| 49*481dde66SAndroid Build Coastguard Worker| `VariantWith<T>(m)` | `argument` is `variant<>` that holds the alternative of type T with a value matching `m`. | 50*481dde66SAndroid Build Coastguard Worker| `Ref(variable)` | `argument` is a reference to `variable`. | 51*481dde66SAndroid Build Coastguard Worker| `TypedEq<type>(value)` | `argument` has type `type` and is equal to `value`. You may need to use this instead of `Eq(value)` when the mock function is overloaded. | 52*481dde66SAndroid Build Coastguard Worker 53*481dde66SAndroid Build Coastguard WorkerExcept `Ref()`, these matchers make a *copy* of `value` in case it's modified or 54*481dde66SAndroid Build Coastguard Workerdestructed later. If the compiler complains that `value` doesn't have a public 55*481dde66SAndroid Build Coastguard Workercopy constructor, try wrap it in `std::ref()`, e.g. 56*481dde66SAndroid Build Coastguard Worker`Eq(std::ref(non_copyable_value))`. If you do that, make sure 57*481dde66SAndroid Build Coastguard Worker`non_copyable_value` is not changed afterwards, or the meaning of your matcher 58*481dde66SAndroid Build Coastguard Workerwill be changed. 59*481dde66SAndroid Build Coastguard Worker 60*481dde66SAndroid Build Coastguard Worker`IsTrue` and `IsFalse` are useful when you need to use a matcher, or for types 61*481dde66SAndroid Build Coastguard Workerthat can be explicitly converted to Boolean, but are not implicitly converted to 62*481dde66SAndroid Build Coastguard WorkerBoolean. In other cases, you can use the basic 63*481dde66SAndroid Build Coastguard Worker[`EXPECT_TRUE` and `EXPECT_FALSE`](assertions.md#boolean) assertions. 64*481dde66SAndroid Build Coastguard Worker 65*481dde66SAndroid Build Coastguard Worker## Floating-Point Matchers {#FpMatchers} 66*481dde66SAndroid Build Coastguard Worker 67*481dde66SAndroid Build Coastguard Worker| Matcher | Description | 68*481dde66SAndroid Build Coastguard Worker| :------------------------------- | :--------------------------------- | 69*481dde66SAndroid Build Coastguard Worker| `DoubleEq(a_double)` | `argument` is a `double` value approximately equal to `a_double`, treating two NaNs as unequal. | 70*481dde66SAndroid Build Coastguard Worker| `FloatEq(a_float)` | `argument` is a `float` value approximately equal to `a_float`, treating two NaNs as unequal. | 71*481dde66SAndroid Build Coastguard Worker| `NanSensitiveDoubleEq(a_double)` | `argument` is a `double` value approximately equal to `a_double`, treating two NaNs as equal. | 72*481dde66SAndroid Build Coastguard Worker| `NanSensitiveFloatEq(a_float)` | `argument` is a `float` value approximately equal to `a_float`, treating two NaNs as equal. | 73*481dde66SAndroid Build Coastguard Worker| `IsNan()` | `argument` is any floating-point type with a NaN value. | 74*481dde66SAndroid Build Coastguard Worker 75*481dde66SAndroid Build Coastguard WorkerThe above matchers use ULP-based comparison (the same as used in googletest). 76*481dde66SAndroid Build Coastguard WorkerThey automatically pick a reasonable error bound based on the absolute value of 77*481dde66SAndroid Build Coastguard Workerthe expected value. `DoubleEq()` and `FloatEq()` conform to the IEEE standard, 78*481dde66SAndroid Build Coastguard Workerwhich requires comparing two NaNs for equality to return false. The 79*481dde66SAndroid Build Coastguard Worker`NanSensitive*` version instead treats two NaNs as equal, which is often what a 80*481dde66SAndroid Build Coastguard Workeruser wants. 81*481dde66SAndroid Build Coastguard Worker 82*481dde66SAndroid Build Coastguard Worker| Matcher | Description | 83*481dde66SAndroid Build Coastguard Worker| :------------------------------------------------ | :----------------------- | 84*481dde66SAndroid Build Coastguard Worker| `DoubleNear(a_double, max_abs_error)` | `argument` is a `double` value close to `a_double` (absolute error <= `max_abs_error`), treating two NaNs as unequal. | 85*481dde66SAndroid Build Coastguard Worker| `FloatNear(a_float, max_abs_error)` | `argument` is a `float` value close to `a_float` (absolute error <= `max_abs_error`), treating two NaNs as unequal. | 86*481dde66SAndroid Build Coastguard Worker| `NanSensitiveDoubleNear(a_double, max_abs_error)` | `argument` is a `double` value close to `a_double` (absolute error <= `max_abs_error`), treating two NaNs as equal. | 87*481dde66SAndroid Build Coastguard Worker| `NanSensitiveFloatNear(a_float, max_abs_error)` | `argument` is a `float` value close to `a_float` (absolute error <= `max_abs_error`), treating two NaNs as equal. | 88*481dde66SAndroid Build Coastguard Worker 89*481dde66SAndroid Build Coastguard Worker## String Matchers 90*481dde66SAndroid Build Coastguard Worker 91*481dde66SAndroid Build Coastguard WorkerThe `argument` can be either a C string or a C++ string object: 92*481dde66SAndroid Build Coastguard Worker 93*481dde66SAndroid Build Coastguard Worker| Matcher | Description | 94*481dde66SAndroid Build Coastguard Worker| :---------------------- | :------------------------------------------------- | 95*481dde66SAndroid Build Coastguard Worker| `ContainsRegex(string)` | `argument` matches the given regular expression. | 96*481dde66SAndroid Build Coastguard Worker| `EndsWith(suffix)` | `argument` ends with string `suffix`. | 97*481dde66SAndroid Build Coastguard Worker| `HasSubstr(string)` | `argument` contains `string` as a sub-string. | 98*481dde66SAndroid Build Coastguard Worker| `IsEmpty()` | `argument` is an empty string. | 99*481dde66SAndroid Build Coastguard Worker| `MatchesRegex(string)` | `argument` matches the given regular expression with the match starting at the first character and ending at the last character. | 100*481dde66SAndroid Build Coastguard Worker| `StartsWith(prefix)` | `argument` starts with string `prefix`. | 101*481dde66SAndroid Build Coastguard Worker| `StrCaseEq(string)` | `argument` is equal to `string`, ignoring case. | 102*481dde66SAndroid Build Coastguard Worker| `StrCaseNe(string)` | `argument` is not equal to `string`, ignoring case. | 103*481dde66SAndroid Build Coastguard Worker| `StrEq(string)` | `argument` is equal to `string`. | 104*481dde66SAndroid Build Coastguard Worker| `StrNe(string)` | `argument` is not equal to `string`. | 105*481dde66SAndroid Build Coastguard Worker| `WhenBase64Unescaped(m)` | `argument` is a base-64 escaped string whose unescaped string matches `m`. The web-safe format from [RFC 4648](https://www.rfc-editor.org/rfc/rfc4648#section-5) is supported. | 106*481dde66SAndroid Build Coastguard Worker 107*481dde66SAndroid Build Coastguard Worker`ContainsRegex()` and `MatchesRegex()` take ownership of the `RE` object. They 108*481dde66SAndroid Build Coastguard Workeruse the regular expression syntax defined 109*481dde66SAndroid Build Coastguard Worker[here](../advanced.md#regular-expression-syntax). All of these matchers, except 110*481dde66SAndroid Build Coastguard Worker`ContainsRegex()` and `MatchesRegex()` work for wide strings as well. 111*481dde66SAndroid Build Coastguard Worker 112*481dde66SAndroid Build Coastguard Worker## Container Matchers 113*481dde66SAndroid Build Coastguard Worker 114*481dde66SAndroid Build Coastguard WorkerMost STL-style containers support `==`, so you can use `Eq(expected_container)` 115*481dde66SAndroid Build Coastguard Workeror simply `expected_container` to match a container exactly. If you want to 116*481dde66SAndroid Build Coastguard Workerwrite the elements in-line, match them more flexibly, or get more informative 117*481dde66SAndroid Build Coastguard Workermessages, you can use: 118*481dde66SAndroid Build Coastguard Worker 119*481dde66SAndroid Build Coastguard Worker| Matcher | Description | 120*481dde66SAndroid Build Coastguard Worker| :---------------------------------------- | :------------------------------- | 121*481dde66SAndroid Build Coastguard Worker| `BeginEndDistanceIs(m)` | `argument` is a container whose `begin()` and `end()` iterators are separated by a number of increments matching `m`. E.g. `BeginEndDistanceIs(2)` or `BeginEndDistanceIs(Lt(2))`. For containers that define a `size()` method, `SizeIs(m)` may be more efficient. | 122*481dde66SAndroid Build Coastguard Worker| `ContainerEq(container)` | The same as `Eq(container)` except that the failure message also includes which elements are in one container but not the other. | 123*481dde66SAndroid Build Coastguard Worker| `Contains(e)` | `argument` contains an element that matches `e`, which can be either a value or a matcher. | 124*481dde66SAndroid Build Coastguard Worker| `Contains(e).Times(n)` | `argument` contains elements that match `e`, which can be either a value or a matcher, and the number of matches is `n`, which can be either a value or a matcher. Unlike the plain `Contains` and `Each` this allows to check for arbitrary occurrences including testing for absence with `Contains(e).Times(0)`. | 125*481dde66SAndroid Build Coastguard Worker| `Each(e)` | `argument` is a container where *every* element matches `e`, which can be either a value or a matcher. | 126*481dde66SAndroid Build Coastguard Worker| `ElementsAre(e0, e1, ..., en)` | `argument` has `n + 1` elements, where the *i*-th element matches `ei`, which can be a value or a matcher. | 127*481dde66SAndroid Build Coastguard Worker| `ElementsAreArray({e0, e1, ..., en})`, `ElementsAreArray(a_container)`, `ElementsAreArray(begin, end)`, `ElementsAreArray(array)`, or `ElementsAreArray(array, count)` | The same as `ElementsAre()` except that the expected element values/matchers come from an initializer list, STL-style container, iterator range, or C-style array. | 128*481dde66SAndroid Build Coastguard Worker| `IsEmpty()` | `argument` is an empty container (`container.empty()`). | 129*481dde66SAndroid Build Coastguard Worker| `IsSubsetOf({e0, e1, ..., en})`, `IsSubsetOf(a_container)`, `IsSubsetOf(begin, end)`, `IsSubsetOf(array)`, or `IsSubsetOf(array, count)` | `argument` matches `UnorderedElementsAre(x0, x1, ..., xk)` for some subset `{x0, x1, ..., xk}` of the expected matchers. | 130*481dde66SAndroid Build Coastguard Worker| `IsSupersetOf({e0, e1, ..., en})`, `IsSupersetOf(a_container)`, `IsSupersetOf(begin, end)`, `IsSupersetOf(array)`, or `IsSupersetOf(array, count)` | Some subset of `argument` matches `UnorderedElementsAre(`expected matchers`)`. | 131*481dde66SAndroid Build Coastguard Worker| `Pointwise(m, container)`, `Pointwise(m, {e0, e1, ..., en})` | `argument` contains the same number of elements as in `container`, and for all i, (the i-th element in `argument`, the i-th element in `container`) match `m`, which is a matcher on 2-tuples. E.g. `Pointwise(Le(), upper_bounds)` verifies that each element in `argument` doesn't exceed the corresponding element in `upper_bounds`. See more detail below. | 132*481dde66SAndroid Build Coastguard Worker| `SizeIs(m)` | `argument` is a container whose size matches `m`. E.g. `SizeIs(2)` or `SizeIs(Lt(2))`. | 133*481dde66SAndroid Build Coastguard Worker| `UnorderedElementsAre(e0, e1, ..., en)` | `argument` has `n + 1` elements, and under *some* permutation of the elements, each element matches an `ei` (for a different `i`), which can be a value or a matcher. | 134*481dde66SAndroid Build Coastguard Worker| `UnorderedElementsAreArray({e0, e1, ..., en})`, `UnorderedElementsAreArray(a_container)`, `UnorderedElementsAreArray(begin, end)`, `UnorderedElementsAreArray(array)`, or `UnorderedElementsAreArray(array, count)` | The same as `UnorderedElementsAre()` except that the expected element values/matchers come from an initializer list, STL-style container, iterator range, or C-style array. | 135*481dde66SAndroid Build Coastguard Worker| `UnorderedPointwise(m, container)`, `UnorderedPointwise(m, {e0, e1, ..., en})` | Like `Pointwise(m, container)`, but ignores the order of elements. | 136*481dde66SAndroid Build Coastguard Worker| `WhenSorted(m)` | When `argument` is sorted using the `<` operator, it matches container matcher `m`. E.g. `WhenSorted(ElementsAre(1, 2, 3))` verifies that `argument` contains elements 1, 2, and 3, ignoring order. | 137*481dde66SAndroid Build Coastguard Worker| `WhenSortedBy(comparator, m)` | The same as `WhenSorted(m)`, except that the given comparator instead of `<` is used to sort `argument`. E.g. `WhenSortedBy(std::greater(), ElementsAre(3, 2, 1))`. | 138*481dde66SAndroid Build Coastguard Worker 139*481dde66SAndroid Build Coastguard Worker**Notes:** 140*481dde66SAndroid Build Coastguard Worker 141*481dde66SAndroid Build Coastguard Worker* These matchers can also match: 142*481dde66SAndroid Build Coastguard Worker 1. a native array passed by reference (e.g. in `Foo(const int (&a)[5])`), 143*481dde66SAndroid Build Coastguard Worker and 144*481dde66SAndroid Build Coastguard Worker 2. an array passed as a pointer and a count (e.g. in `Bar(const T* buffer, 145*481dde66SAndroid Build Coastguard Worker int len)` -- see [Multi-argument Matchers](#MultiArgMatchers)). 146*481dde66SAndroid Build Coastguard Worker* The array being matched may be multi-dimensional (i.e. its elements can be 147*481dde66SAndroid Build Coastguard Worker arrays). 148*481dde66SAndroid Build Coastguard Worker* `m` in `Pointwise(m, ...)` and `UnorderedPointwise(m, ...)` should be a 149*481dde66SAndroid Build Coastguard Worker matcher for `::std::tuple<T, U>` where `T` and `U` are the element type of 150*481dde66SAndroid Build Coastguard Worker the actual container and the expected container, respectively. For example, 151*481dde66SAndroid Build Coastguard Worker to compare two `Foo` containers where `Foo` doesn't support `operator==`, 152*481dde66SAndroid Build Coastguard Worker one might write: 153*481dde66SAndroid Build Coastguard Worker 154*481dde66SAndroid Build Coastguard Worker ```cpp 155*481dde66SAndroid Build Coastguard Worker MATCHER(FooEq, "") { 156*481dde66SAndroid Build Coastguard Worker return std::get<0>(arg).Equals(std::get<1>(arg)); 157*481dde66SAndroid Build Coastguard Worker } 158*481dde66SAndroid Build Coastguard Worker ... 159*481dde66SAndroid Build Coastguard Worker EXPECT_THAT(actual_foos, Pointwise(FooEq(), expected_foos)); 160*481dde66SAndroid Build Coastguard Worker ``` 161*481dde66SAndroid Build Coastguard Worker 162*481dde66SAndroid Build Coastguard Worker## Member Matchers 163*481dde66SAndroid Build Coastguard Worker 164*481dde66SAndroid Build Coastguard Worker| Matcher | Description | 165*481dde66SAndroid Build Coastguard Worker| :------------------------------ | :----------------------------------------- | 166*481dde66SAndroid Build Coastguard Worker| `Field(&class::field, m)` | `argument.field` (or `argument->field` when `argument` is a plain pointer) matches matcher `m`, where `argument` is an object of type _class_. | 167*481dde66SAndroid Build Coastguard Worker| `Field(field_name, &class::field, m)` | The same as the two-parameter version, but provides a better error message. | 168*481dde66SAndroid Build Coastguard Worker| `Key(e)` | `argument.first` matches `e`, which can be either a value or a matcher. E.g. `Contains(Key(Le(5)))` can verify that a `map` contains a key `<= 5`. | 169*481dde66SAndroid Build Coastguard Worker| `Pair(m1, m2)` | `argument` is an `std::pair` whose `first` field matches `m1` and `second` field matches `m2`. | 170*481dde66SAndroid Build Coastguard Worker| `FieldsAre(m...)` | `argument` is a compatible object where each field matches piecewise with the matchers `m...`. A compatible object is any that supports the `std::tuple_size<Obj>`+`get<I>(obj)` protocol. In C++17 and up this also supports types compatible with structured bindings, like aggregates. | 171*481dde66SAndroid Build Coastguard Worker| `Property(&class::property, m)` | `argument.property()` (or `argument->property()` when `argument` is a plain pointer) matches matcher `m`, where `argument` is an object of type _class_. The method `property()` must take no argument and be declared as `const`. | 172*481dde66SAndroid Build Coastguard Worker| `Property(property_name, &class::property, m)` | The same as the two-parameter version, but provides a better error message. 173*481dde66SAndroid Build Coastguard Worker 174*481dde66SAndroid Build Coastguard Worker**Notes:** 175*481dde66SAndroid Build Coastguard Worker 176*481dde66SAndroid Build Coastguard Worker* You can use `FieldsAre()` to match any type that supports structured 177*481dde66SAndroid Build Coastguard Worker bindings, such as `std::tuple`, `std::pair`, `std::array`, and aggregate 178*481dde66SAndroid Build Coastguard Worker types. For example: 179*481dde66SAndroid Build Coastguard Worker 180*481dde66SAndroid Build Coastguard Worker ```cpp 181*481dde66SAndroid Build Coastguard Worker std::tuple<int, std::string> my_tuple{7, "hello world"}; 182*481dde66SAndroid Build Coastguard Worker EXPECT_THAT(my_tuple, FieldsAre(Ge(0), HasSubstr("hello"))); 183*481dde66SAndroid Build Coastguard Worker 184*481dde66SAndroid Build Coastguard Worker struct MyStruct { 185*481dde66SAndroid Build Coastguard Worker int value = 42; 186*481dde66SAndroid Build Coastguard Worker std::string greeting = "aloha"; 187*481dde66SAndroid Build Coastguard Worker }; 188*481dde66SAndroid Build Coastguard Worker MyStruct s; 189*481dde66SAndroid Build Coastguard Worker EXPECT_THAT(s, FieldsAre(42, "aloha")); 190*481dde66SAndroid Build Coastguard Worker ``` 191*481dde66SAndroid Build Coastguard Worker 192*481dde66SAndroid Build Coastguard Worker* Don't use `Property()` against member functions that you do not own, because 193*481dde66SAndroid Build Coastguard Worker taking addresses of functions is fragile and generally not part of the 194*481dde66SAndroid Build Coastguard Worker contract of the function. 195*481dde66SAndroid Build Coastguard Worker 196*481dde66SAndroid Build Coastguard Worker## Matching the Result of a Function, Functor, or Callback 197*481dde66SAndroid Build Coastguard Worker 198*481dde66SAndroid Build Coastguard Worker| Matcher | Description | 199*481dde66SAndroid Build Coastguard Worker| :--------------- | :------------------------------------------------ | 200*481dde66SAndroid Build Coastguard Worker| `ResultOf(f, m)` | `f(argument)` matches matcher `m`, where `f` is a function or functor. | 201*481dde66SAndroid Build Coastguard Worker| `ResultOf(result_description, f, m)` | The same as the two-parameter version, but provides a better error message. 202*481dde66SAndroid Build Coastguard Worker 203*481dde66SAndroid Build Coastguard Worker## Pointer Matchers 204*481dde66SAndroid Build Coastguard Worker 205*481dde66SAndroid Build Coastguard Worker| Matcher | Description | 206*481dde66SAndroid Build Coastguard Worker| :------------------------ | :---------------------------------------------- | 207*481dde66SAndroid Build Coastguard Worker| `Address(m)` | the result of `std::addressof(argument)` matches `m`. | 208*481dde66SAndroid Build Coastguard Worker| `Pointee(m)` | `argument` (either a smart pointer or a raw pointer) points to a value that matches matcher `m`. | 209*481dde66SAndroid Build Coastguard Worker| `Pointer(m)` | `argument` (either a smart pointer or a raw pointer) contains a pointer that matches `m`. `m` will match against the raw pointer regardless of the type of `argument`. | 210*481dde66SAndroid Build Coastguard Worker| `WhenDynamicCastTo<T>(m)` | when `argument` is passed through `dynamic_cast<T>()`, it matches matcher `m`. | 211*481dde66SAndroid Build Coastguard Worker 212*481dde66SAndroid Build Coastguard Worker## Multi-argument Matchers {#MultiArgMatchers} 213*481dde66SAndroid Build Coastguard Worker 214*481dde66SAndroid Build Coastguard WorkerTechnically, all matchers match a *single* value. A "multi-argument" matcher is 215*481dde66SAndroid Build Coastguard Workerjust one that matches a *tuple*. The following matchers can be used to match a 216*481dde66SAndroid Build Coastguard Workertuple `(x, y)`: 217*481dde66SAndroid Build Coastguard Worker 218*481dde66SAndroid Build Coastguard WorkerMatcher | Description 219*481dde66SAndroid Build Coastguard Worker:------ | :---------- 220*481dde66SAndroid Build Coastguard Worker`Eq()` | `x == y` 221*481dde66SAndroid Build Coastguard Worker`Ge()` | `x >= y` 222*481dde66SAndroid Build Coastguard Worker`Gt()` | `x > y` 223*481dde66SAndroid Build Coastguard Worker`Le()` | `x <= y` 224*481dde66SAndroid Build Coastguard Worker`Lt()` | `x < y` 225*481dde66SAndroid Build Coastguard Worker`Ne()` | `x != y` 226*481dde66SAndroid Build Coastguard Worker 227*481dde66SAndroid Build Coastguard WorkerYou can use the following selectors to pick a subset of the arguments (or 228*481dde66SAndroid Build Coastguard Workerreorder them) to participate in the matching: 229*481dde66SAndroid Build Coastguard Worker 230*481dde66SAndroid Build Coastguard Worker| Matcher | Description | 231*481dde66SAndroid Build Coastguard Worker| :------------------------- | :---------------------------------------------- | 232*481dde66SAndroid Build Coastguard Worker| `AllArgs(m)` | Equivalent to `m`. Useful as syntactic sugar in `.With(AllArgs(m))`. | 233*481dde66SAndroid Build Coastguard Worker| `Args<N1, N2, ..., Nk>(m)` | The tuple of the `k` selected (using 0-based indices) arguments matches `m`, e.g. `Args<1, 2>(Eq())`. | 234*481dde66SAndroid Build Coastguard Worker 235*481dde66SAndroid Build Coastguard Worker## Composite Matchers 236*481dde66SAndroid Build Coastguard Worker 237*481dde66SAndroid Build Coastguard WorkerYou can make a matcher from one or more other matchers: 238*481dde66SAndroid Build Coastguard Worker 239*481dde66SAndroid Build Coastguard Worker| Matcher | Description | 240*481dde66SAndroid Build Coastguard Worker| :------------------------------- | :-------------------------------------- | 241*481dde66SAndroid Build Coastguard Worker| `AllOf(m1, m2, ..., mn)` | `argument` matches all of the matchers `m1` to `mn`. | 242*481dde66SAndroid Build Coastguard Worker| `AllOfArray({m0, m1, ..., mn})`, `AllOfArray(a_container)`, `AllOfArray(begin, end)`, `AllOfArray(array)`, or `AllOfArray(array, count)` | The same as `AllOf()` except that the matchers come from an initializer list, STL-style container, iterator range, or C-style array. | 243*481dde66SAndroid Build Coastguard Worker| `AnyOf(m1, m2, ..., mn)` | `argument` matches at least one of the matchers `m1` to `mn`. | 244*481dde66SAndroid Build Coastguard Worker| `AnyOfArray({m0, m1, ..., mn})`, `AnyOfArray(a_container)`, `AnyOfArray(begin, end)`, `AnyOfArray(array)`, or `AnyOfArray(array, count)` | The same as `AnyOf()` except that the matchers come from an initializer list, STL-style container, iterator range, or C-style array. | 245*481dde66SAndroid Build Coastguard Worker| `Not(m)` | `argument` doesn't match matcher `m`. | 246*481dde66SAndroid Build Coastguard Worker| `Conditional(cond, m1, m2)` | Matches matcher `m1` if `cond` evaluates to true, else matches `m2`.| 247*481dde66SAndroid Build Coastguard Worker 248*481dde66SAndroid Build Coastguard Worker## Adapters for Matchers 249*481dde66SAndroid Build Coastguard Worker 250*481dde66SAndroid Build Coastguard Worker| Matcher | Description | 251*481dde66SAndroid Build Coastguard Worker| :---------------------- | :------------------------------------ | 252*481dde66SAndroid Build Coastguard Worker| `MatcherCast<T>(m)` | casts matcher `m` to type `Matcher<T>`. | 253*481dde66SAndroid Build Coastguard Worker| `SafeMatcherCast<T>(m)` | [safely casts](../gmock_cook_book.md#SafeMatcherCast) matcher `m` to type `Matcher<T>`. | 254*481dde66SAndroid Build Coastguard Worker| `Truly(predicate)` | `predicate(argument)` returns something considered by C++ to be true, where `predicate` is a function or functor. | 255*481dde66SAndroid Build Coastguard Worker 256*481dde66SAndroid Build Coastguard Worker`AddressSatisfies(callback)` and `Truly(callback)` take ownership of `callback`, 257*481dde66SAndroid Build Coastguard Workerwhich must be a permanent callback. 258*481dde66SAndroid Build Coastguard Worker 259*481dde66SAndroid Build Coastguard Worker## Using Matchers as Predicates {#MatchersAsPredicatesCheat} 260*481dde66SAndroid Build Coastguard Worker 261*481dde66SAndroid Build Coastguard Worker| Matcher | Description | 262*481dde66SAndroid Build Coastguard Worker| :---------------------------- | :------------------------------------------ | 263*481dde66SAndroid Build Coastguard Worker| `Matches(m)(value)` | evaluates to `true` if `value` matches `m`. You can use `Matches(m)` alone as a unary functor. | 264*481dde66SAndroid Build Coastguard Worker| `ExplainMatchResult(m, value, result_listener)` | evaluates to `true` if `value` matches `m`, explaining the result to `result_listener`. | 265*481dde66SAndroid Build Coastguard Worker| `Value(value, m)` | evaluates to `true` if `value` matches `m`. | 266*481dde66SAndroid Build Coastguard Worker 267*481dde66SAndroid Build Coastguard Worker## Defining Matchers 268*481dde66SAndroid Build Coastguard Worker 269*481dde66SAndroid Build Coastguard Worker| Macro | Description | 270*481dde66SAndroid Build Coastguard Worker| :----------------------------------- | :------------------------------------ | 271*481dde66SAndroid Build Coastguard Worker| `MATCHER(IsEven, "") { return (arg % 2) == 0; }` | Defines a matcher `IsEven()` to match an even number. | 272*481dde66SAndroid Build Coastguard Worker| `MATCHER_P(IsDivisibleBy, n, "") { *result_listener << "where the remainder is " << (arg % n); return (arg % n) == 0; }` | Defines a matcher `IsDivisibleBy(n)` to match a number divisible by `n`. | 273*481dde66SAndroid Build Coastguard Worker| `MATCHER_P2(IsBetween, a, b, absl::StrCat(negation ? "isn't" : "is", " between ", PrintToString(a), " and ", PrintToString(b))) { return a <= arg && arg <= b; }` | Defines a matcher `IsBetween(a, b)` to match a value in the range [`a`, `b`]. | 274*481dde66SAndroid Build Coastguard Worker 275*481dde66SAndroid Build Coastguard Worker**Notes:** 276*481dde66SAndroid Build Coastguard Worker 277*481dde66SAndroid Build Coastguard Worker1. The `MATCHER*` macros cannot be used inside a function or class. 278*481dde66SAndroid Build Coastguard Worker2. The matcher body must be *purely functional* (i.e. it cannot have any side 279*481dde66SAndroid Build Coastguard Worker effect, and the result must not depend on anything other than the value 280*481dde66SAndroid Build Coastguard Worker being matched and the matcher parameters). 281*481dde66SAndroid Build Coastguard Worker3. You can use `PrintToString(x)` to convert a value `x` of any type to a 282*481dde66SAndroid Build Coastguard Worker string. 283*481dde66SAndroid Build Coastguard Worker4. You can use `ExplainMatchResult()` in a custom matcher to wrap another 284*481dde66SAndroid Build Coastguard Worker matcher, for example: 285*481dde66SAndroid Build Coastguard Worker 286*481dde66SAndroid Build Coastguard Worker ```cpp 287*481dde66SAndroid Build Coastguard Worker MATCHER_P(NestedPropertyMatches, matcher, "") { 288*481dde66SAndroid Build Coastguard Worker return ExplainMatchResult(matcher, arg.nested().property(), result_listener); 289*481dde66SAndroid Build Coastguard Worker } 290*481dde66SAndroid Build Coastguard Worker ``` 291*481dde66SAndroid Build Coastguard Worker 292*481dde66SAndroid Build Coastguard Worker5. You can use `DescribeMatcher<>` to describe another matcher. For example: 293*481dde66SAndroid Build Coastguard Worker 294*481dde66SAndroid Build Coastguard Worker ```cpp 295*481dde66SAndroid Build Coastguard Worker MATCHER_P(XAndYThat, matcher, 296*481dde66SAndroid Build Coastguard Worker "X that " + DescribeMatcher<int>(matcher, negation) + 297*481dde66SAndroid Build Coastguard Worker (negation ? " or" : " and") + " Y that " + 298*481dde66SAndroid Build Coastguard Worker DescribeMatcher<double>(matcher, negation)) { 299*481dde66SAndroid Build Coastguard Worker return ExplainMatchResult(matcher, arg.x(), result_listener) && 300*481dde66SAndroid Build Coastguard Worker ExplainMatchResult(matcher, arg.y(), result_listener); 301*481dde66SAndroid Build Coastguard Worker } 302*481dde66SAndroid Build Coastguard Worker ``` 303