| 3335 | |
| 3336 | template<typename T> |
| 3337 | Vector::ContainsMatcher<T> Contains( std::vector<T> const& comparator ) { |
| 3338 | return Vector::ContainsMatcher<T>( comparator ); |
| 3339 | } |
| 3340 | |
| 3341 | template<typename T> |
| 3342 | Vector::ContainsElementMatcher<T> VectorContains( T const& comparator ) { |
nothing calls this directly
no test coverage detected