| 24 | struct assertion_traits<std::vector<DATA>> // specialization for the std::string type |
| 25 | { |
| 26 | static bool equal(const std::vector<DATA> &x, const std::vector<DATA> &y) { return x == y; } |
| 27 | static std::string toString(const std::vector<DATA> &values) |
| 28 | { |
| 29 | OStringStream ost; |
no outgoing calls
no test coverage detected