Test that 0 checks is correct */
| 186 | /** Test that 0 checks is correct |
| 187 | */ |
| 188 | BOOST_AUTO_TEST_CASE(test_CheckQueue_Correct_Zero) |
| 189 | { |
| 190 | std::vector<size_t> range; |
| 191 | range.push_back((size_t)0); |
| 192 | Correct_Queue_range(range); |
| 193 | } |
| 194 | /** Test that 1 check is correct |
| 195 | */ |
| 196 | BOOST_AUTO_TEST_CASE(test_CheckQueue_Correct_One) |
nothing calls this directly
no test coverage detected