Lines Matching refs:Pointee
1265 the pointer itself, has a certain property? Well, you can use the `Pointee(m)`
1268 `Pointee(m)` matches a pointer if and only if `m` matches the value the pointer
1273 using ::testing::Pointee;
1275 EXPECT_CALL(foo, Bar(Pointee(Ge(3))));
1281 One nice thing about `Pointee()` is that it treats a `NULL` pointer as a match
1282 failure, so you can write `Pointee(m)` instead of
1287 using ::testing::Pointee;
1289 AllOf(NotNull(), Pointee(m))
1294 Also, did we tell you that `Pointee()` works with both raw pointers **and**
1298 `Pointee()` to probe deeper inside the value. For example,
1299 `Pointee(Pointee(Lt(3)))` matches a pointer that points to a pointer that points
1447 `Pointee(ElementsAre*(...))`.
3865 EXPECT_THAT(mock.AsStdFunction()(), Pointee(Eq(17)));