| 132 | } |
| 133 | |
| 134 | int main(int, char** argv) |
| 135 | { |
| 136 | try |
| 137 | { |
| 138 | test_circular_buffer(); |
| 139 | test_circular_buffer_iterators(); |
| 140 | } |
| 141 | catch (const std::runtime_error & err) |
| 142 | { |
| 143 | fprintf(stderr, "%s", err.what()); |
| 144 | return 1; |
| 145 | } |
| 146 | return 0; |
| 147 | } |
nothing calls this directly
no test coverage detected