| 131 | } |
| 132 | |
| 133 | int main(int, char**) { |
| 134 | int failed = 0; |
| 135 | RUN_TEST(failed, test_empty()); |
| 136 | RUN_TEST(failed, test_use()); |
| 137 | RUN_TEST(failed, test_cppmap()); |
| 138 | RUN_TEST(failed, test_value()); |
| 139 | RUN_TEST(failed, test_copy_constructor()); |
| 140 | RUN_TEST(failed, test_initializer_list_constructor()); |
| 141 | return failed; |
| 142 | } |
nothing calls this directly
no test coverage detected