| 10364 | } |
| 10365 | |
| 10366 | static std::vector<std::string> SplitIntoTestNames(const char* src) { |
| 10367 | std::vector<std::string> name_vec; |
| 10368 | src = SkipSpaces(src); |
| 10369 | for (; src != NULL; src = SkipComma(src)) { |
| 10370 | name_vec.push_back(StripTrailingSpaces(GetPrefixUntilComma(src))); |
| 10371 | } |
| 10372 | return name_vec; |
| 10373 | } |
| 10374 | |
| 10375 | // Verifies that registered_tests match the test names in |
| 10376 | // defined_test_names_; returns registered_tests if successful, or |
no test coverage detected