Home
last modified time | relevance | path

Searched refs:VectorContains (Results 1 – 8 of 8) sorted by relevance

/external/catch2/projects/SelfTest/UsageTests/
DMatchers.tests.cpp221 CHECK_THAT(v, VectorContains(1));
222 CHECK_THAT(v, VectorContains(2));
233 CHECK_THAT(v, VectorContains(1) && VectorContains(2));
273 CHECK_THAT(v, VectorContains(-1));
274 CHECK_THAT(empty, VectorContains(1));
/external/catch2/docs/
Dmatchers.md48 The vector matchers are `Contains`, `VectorContains` and `Equals`. `VectorContains` looks for a sin…
Drelease-notes.md385 * Fixed compilation when `VectorContains` matcher was combined using `&&` (#1092)
/external/catch2/include/internal/
Dcatch_matchers_vector.h166 Vector::ContainsElementMatcher<T> VectorContains( T const& comparator ) { in VectorContains() function
/external/catch2/projects/SelfTest/Baselines/
Dconsole.std.approved.txt861 CHECK_THAT( v, VectorContains(-1) )
866 CHECK_THAT( empty, VectorContains(1) )
Dcompact.sw.approved.txt1164 Matchers.tests.cpp:<line number>: passed: v, VectorContains(1) for: { 1, 2, 3 } Contains: 1
1165 Matchers.tests.cpp:<line number>: passed: v, VectorContains(2) for: { 1, 2, 3 } Contains: 2
1170 Matchers.tests.cpp:<line number>: passed: v, VectorContains(1) && VectorContains(2) for: { 1, 2, 3 …
1178 Matchers.tests.cpp:<line number>: failed: v, VectorContains(-1) for: { 1, 2, 3 } Contains: -1
1179 Matchers.tests.cpp:<line number>: failed: empty, VectorContains(1) for: { } Contains: 1
Dconsole.sw.approved.txt8463 CHECK_THAT( v, VectorContains(1) )
8468 CHECK_THAT( v, VectorContains(2) )
8507 CHECK_THAT( v, VectorContains(1) && VectorContains(2) )
8568 CHECK_THAT( v, VectorContains(-1) )
8573 CHECK_THAT( empty, VectorContains(1) )
/external/catch2/single_include/catch2/
Dcatch.hpp3351 Vector::ContainsElementMatcher<T> VectorContains( T const& comparator ) { in VectorContains() function