Run all the tests.
| 165 | // Run all the tests. |
| 166 | // |
| 167 | void |
| 168 | TSPluginInit(int, const char **) |
| 169 | { |
| 170 | TSPluginRegistrationInfo info; |
| 171 | |
| 172 | info.plugin_name = "test_cppapi"; |
| 173 | info.vendor_name = "Apache Software Foundation"; |
| 174 | info.support_email = "dev@trafficserver.apache.org"; |
| 175 | |
| 176 | ALWAYS_ASSERT(TSPluginRegister(&info) == TS_SUCCESS) |
| 177 | |
| 178 | for (auto fp : testList) { |
| 179 | fp(); |
| 180 | } |
| 181 | } |
nothing calls this directly
no test coverage detected