| 277 | } |
| 278 | |
| 279 | int main(void) |
| 280 | { |
| 281 | std::cout << "test creator interface ....\n"; |
| 282 | test_creator(); |
| 283 | |
| 284 | std::cout << "test class constructor ....\n"; |
| 285 | test_constructor(); |
| 286 | |
| 287 | std::cout << "test class interface ....\n"; |
| 288 | test_interface(); |
| 289 | |
| 290 | std::cout << "test done\n"; |
| 291 | |
| 292 | return 0; |
| 293 | } |
nothing calls this directly
no test coverage detected