Initializes Google Test. This must be called before calling RUN_ALL_TESTS(). In particular, it parses a command line for the flags that Google Test recognizes. Whenever a Google Test flag is seen, it is removed from argv, and *argc is decremented. No value is returned. Instead, the Google Test flag variables are updated. Calling the function for the second time has no user-visible effect.
| 6189 | // |
| 6190 | // Calling the function for the second time has no user-visible effect. |
| 6191 | void InitGoogleTest(int* argc, char** argv) { |
| 6192 | internal::InitGoogleTestImpl(argc, argv); |
| 6193 | } |
| 6194 | |
| 6195 | // This overloaded version can be used in Windows programs compiled in |
| 6196 | // UNICODE mode. |
no test coverage detected