| 11691 | } |
| 11692 | |
| 11693 | static std::vector<std::string> SplitIntoTestNames(const char* src) { |
| 11694 | std::vector<std::string> name_vec; |
| 11695 | src = SkipSpaces(src); |
| 11696 | for (; src != nullptr; src = SkipComma(src)) { |
| 11697 | name_vec.push_back(StripTrailingSpaces(GetPrefixUntilComma(src))); |
| 11698 | } |
| 11699 | return name_vec; |
| 11700 | } |
| 11701 | |
| 11702 | // Verifies that registered_tests match the test names in |
| 11703 | // registered_tests_; returns registered_tests if successful, or |
no test coverage detected