| 153 | {} |
| 154 | |
| 155 | void perform_test ( |
| 156 | ) |
| 157 | { |
| 158 | for (int j = 0; j < 5; ++j) |
| 159 | { |
| 160 | print_spinner(); |
| 161 | for (int i = 0; i < 40; ++i) |
| 162 | run_test(i); |
| 163 | } |
| 164 | |
| 165 | run_test2<int>(); |
| 166 | run_test2<short>(); |
| 167 | run_test2<signed char>(); |
| 168 | run_test2<float>(); |
| 169 | run_test2<double>(); |
| 170 | } |
| 171 | } a; |
| 172 | |
| 173 | } |
nothing calls this directly
no test coverage detected