| 163 | } |
| 164 | |
| 165 | BOOST_AUTO_TEST_CASE(creation) |
| 166 | { |
| 167 | for(size_t i = 0; i < std::size(values); ++i) |
| 168 | { |
| 169 | for(size_t j = 0; j < std::size(offsets); ++j) |
| 170 | { |
| 171 | RunCreate(values[i]); |
| 172 | RunCreate(values[i] + offsets[j]); |
| 173 | RunCreate(values[i] - offsets[j]); |
| 174 | } |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | BOOST_AUTO_TEST_CASE(operators) |
| 179 | { |
nothing calls this directly
no test coverage detected