Test that 0 checks is correct */
| 177 | /** Test that 0 checks is correct |
| 178 | */ |
| 179 | BOOST_AUTO_TEST_CASE(test_CheckQueue_Correct_Zero) |
| 180 | { |
| 181 | std::vector<size_t> range; |
| 182 | range.push_back((size_t)0); |
| 183 | Correct_Queue_range(range); |
| 184 | } |
| 185 | /** Test that 1 check is correct |
| 186 | */ |
| 187 | BOOST_AUTO_TEST_CASE(test_CheckQueue_Correct_One) |
nothing calls this directly
no test coverage detected