| 64 | /////////////////////////////////////////////////////////////////////////////// |
| 65 | |
| 66 | TEST_F(StringTest, Split_ByComma) |
| 67 | { |
| 68 | auto actual = String::split("a,bb,ccc,dd", ","); |
| 69 | AssertVector<std::string_view>(actual, { "a", "bb", "ccc", "dd" }); |
| 70 | } |
| 71 | TEST_F(StringTest, Split_ByColonColon) |
| 72 | { |
| 73 | auto actual = String::split("a::bb:ccc:::::dd", "::"); |
nothing calls this directly
no test coverage detected