fix/reinit #3

Merged
tqcq merged 18 commits from fix/reinit into master 2025-04-02 13:31:18 +00:00
Showing only changes of commit d3eeaffc30 - Show all commits

View File

@ -191,6 +191,8 @@ TEST(String, TrimByCustset)
ASSERT_EQ(" ", Trim("abcd abcd", "abcd"));
ASSERT_EQ("abcd abc", Trim("abcd abcd", "d"));
ASSERT_EQ("abcd abcd ", Trim("abcd abcd ", "d"));
ASSERT_EQ(" abcd abcd ", Trim(" abcd abcd ", "ad"));
ASSERT_EQ("bcd abc", Trim(" abcd abcd ", "ad "));
}
TEST(String, Split1)