Standard C/C++ main entry point
| 12653 | #else |
| 12654 | // Standard C/C++ main entry point |
| 12655 | int main(int argc, char *argv[]) { |
| 12656 | #endif |
| 12657 | |
| 12658 | return Catch::Session().run(argc, argv); |
| 12659 | } |
| 12660 | |
| 12661 | #else // __OBJC__ |
| 12662 |
nothing calls this directly
no test coverage detected