Lines Matching full:container
112 ## Container Matchers
115 or simply `expected_container` to match a container exactly. If you want to
121 | `BeginEndDistanceIs(m)` | `argument` is a container whose `begin()` and `end()` iterators are sep…
122 | `ContainerEq(container)` | The same as `Eq(container)` except that the failure message also inclu…
125 | `Each(e)` | `argument` is a container where *every* element matches `e`, which can be either a va…
127 …pected element values/matchers come from an initializer list, STL-style container, iterator range,…
128 | `IsEmpty()` | `argument` is an empty container (`container.empty()`). |
131 …container)`, `Pointwise(m, {e0, e1, ..., en})` | `argument` contains the same number of elements a…
132 | `SizeIs(m)` | `argument` is a container whose size matches `m`. E.g. `SizeIs(2)` or `SizeIs(Lt(2)…
134 …pected element values/matchers come from an initializer list, STL-style container, iterator range,…
135 | `UnorderedPointwise(m, container)`, `UnorderedPointwise(m, {e0, e1, ..., en})` | Like `Pointwise(…
136 | `WhenSorted(m)` | When `argument` is sorted using the `<` operator, it matches container matcher …
150 the actual container and the expected container, respectively. For example,
242 …Of()` except that the matchers come from an initializer list, STL-style container, iterator range,…
244 …Of()` except that the matchers come from an initializer list, STL-style container, iterator range,…