| 186 | |
| 187 | template <typename VectorT> |
| 188 | void assert_empty(VectorT& v) { |
| 189 | // Size tests |
| 190 | EXPECT_EQ(0u, v.size()); |
| 191 | EXPECT_TRUE(v.empty()); |
| 192 | |
| 193 | // Iterator tests |
| 194 | EXPECT_TRUE(v.begin() == v.end()); |
| 195 | } |
| 196 | |
| 197 | // Assert that v contains the specified values, in order. |
| 198 | template <typename VectorT> |
no test coverage detected