Skips to the first non-space char in str. Returns an empty string if str contains only whitespace characters.
| 10358 | // Skips to the first non-space char in str. Returns an empty string if str |
| 10359 | // contains only whitespace characters. |
| 10360 | static const char* SkipSpaces(const char* str) { |
| 10361 | while (IsSpace(*str)) |
| 10362 | str++; |
| 10363 | return str; |
| 10364 | } |
| 10365 | |
| 10366 | static std::vector<std::string> SplitIntoTestNames(const char* src) { |
| 10367 | std::vector<std::string> name_vec; |
no test coverage detected