GTestIsInitialized() returns true iff the user has initialized Google Test. Useful for catching the user mistake of not initializing Google Test before calling RUN_ALL_TESTS().
| 1838 | // Google Test. Useful for catching the user mistake of not initializing |
| 1839 | // Google Test before calling RUN_ALL_TESTS(). |
| 1840 | static bool GTestIsInitialized() { return GetArgvs().size() > 0; } |
| 1841 | |
| 1842 | // Iterates over a vector of TestSuites, keeping a running sum of the |
| 1843 | // results of calling a given int-returning method on each. |
no test coverage detected