| 169 | } |
| 170 | |
| 171 | TEST(SplitStringUsingSubstrTest, EmptyString) { |
| 172 | std::vector<std::string> results; |
| 173 | SplitStringUsingSubstr(std::string(), "DELIMITER", &results); |
| 174 | const char* const expected[] = { "" }; |
| 175 | AssertElements(results, expected, arraysize(expected)); |
| 176 | } |
| 177 | |
| 178 | TEST(StringUtilTest, SplitString) { |
| 179 | std::vector<std::wstring> r; |
nothing calls this directly
no test coverage detected