| 212 | // Generate a sequence of values to initialize the vector. |
| 213 | template <typename VectorT> |
| 214 | void make_sequence(VectorT& v, int start, int end) { |
| 215 | for (int i = start; i <= end; ++i) { |
| 216 | v.push_back(Constructable(i)); |
| 217 | } |
| 218 | } |
| 219 | }; |
| 220 | |
| 221 | // Test fixture class |
no test coverage detected