| 8 | namespace { |
| 9 | template <typename Container> |
| 10 | std::vector<Container> get_sample_vectors() { |
| 11 | std::vector<Container> result; |
| 12 | result.emplace_back(); |
| 13 | for (const auto sz : {0, 4, 5, 6, 31, 32, 33, 63, 64, 65}) { |
| 14 | for (const bool b : {false, true}) { |
| 15 | result.emplace_back(static_cast<std::size_t>(sz), b); |
| 16 | } |
| 17 | } |
| 18 | return result; |
| 19 | } |
| 20 | |
| 21 | void require_vector_matches_sample(const args_convert_vector &actual, |
| 22 | const std::vector<bool> &expected) { |
nothing calls this directly
no test coverage detected