| 326 | |
| 327 | |
| 328 | int main() |
| 329 | { |
| 330 | try |
| 331 | { |
| 332 | return unitTests(); |
| 333 | } |
| 334 | catch (std::runtime_error & e) |
| 335 | { |
| 336 | std::cout << "Failure due to uncaught exception: " << e.what() << std::endl; |
| 337 | return EXIT_FAILURE; |
| 338 | } |
| 339 | } |
nothing calls this directly
no test coverage detected