| 3322 | |
| 3323 | template<typename T> |
| 3324 | Vector::ContainsMatcher<T> Contains( std::vector<T> const& comparator ) { |
| 3325 | return Vector::ContainsMatcher<T>( comparator ); |
| 3326 | } |
| 3327 | |
| 3328 | template<typename T> |
| 3329 | Vector::ContainsElementMatcher<T> VectorContains( T const& comparator ) { |
nothing calls this directly
no test coverage detected