Skips to the first non-space char in str. Returns an empty string if str contains only whitespace characters.
| 9047 | // Skips to the first non-space char in str. Returns an empty string if str |
| 9048 | // contains only whitespace characters. |
| 9049 | static const char* SkipSpaces(const char* str) { |
| 9050 | while (IsSpace(*str)) |
| 9051 | str++; |
| 9052 | return str; |
| 9053 | } |
| 9054 | |
| 9055 | // Verifies that registered_tests match the test names in |
| 9056 | // defined_test_names_; returns registered_tests if successful, or |
no test coverage detected