Standard C/C++ main entry point
| 11301 | #else |
| 11302 | // Standard C/C++ main entry point |
| 11303 | int main (int argc, char * argv[]) { |
| 11304 | #endif |
| 11305 | |
| 11306 | int result = Catch::Session().run( argc, argv ); |
| 11307 | return ( result < 0xff ? result : 0xff ); |
| 11308 | } |
| 11309 | |
| 11310 | #else // __OBJC__ |
| 11311 |
nothing calls this directly
no test coverage detected