mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-06 05:49:39 -06:00
Import/Export signature files as CSV
This commit is contained in:
@ -16,3 +16,27 @@ TEST(StringUtil, JoinStrings)
|
||||
EXPECT_EQ("a, bb, c", JoinStrings({"a", "bb", "c"}, ", "));
|
||||
EXPECT_EQ("???", JoinStrings({"?", "?"}, "?"));
|
||||
}
|
||||
|
||||
TEST(StringUtil, StringBeginsWith)
|
||||
{
|
||||
EXPECT_EQ(true, StringBeginsWith("abc", "a"));
|
||||
EXPECT_EQ(false, StringBeginsWith("abc", "b"));
|
||||
EXPECT_EQ(true, StringBeginsWith("abc", "ab"));
|
||||
EXPECT_EQ(false, StringBeginsWith("a", "ab"));
|
||||
EXPECT_EQ(false, StringBeginsWith("", "a"));
|
||||
EXPECT_EQ(false, StringBeginsWith("", "ab"));
|
||||
EXPECT_EQ(true, StringBeginsWith("abc", ""));
|
||||
EXPECT_EQ(true, StringBeginsWith("", ""));
|
||||
}
|
||||
|
||||
TEST(StringUtil, StringEndsWith)
|
||||
{
|
||||
EXPECT_EQ(true, StringEndsWith("abc", "c"));
|
||||
EXPECT_EQ(false, StringEndsWith("abc", "b"));
|
||||
EXPECT_EQ(true, StringEndsWith("abc", "bc"));
|
||||
EXPECT_EQ(false, StringEndsWith("a", "ab"));
|
||||
EXPECT_EQ(false, StringEndsWith("", "a"));
|
||||
EXPECT_EQ(false, StringEndsWith("", "ab"));
|
||||
EXPECT_EQ(true, StringEndsWith("abc", ""));
|
||||
EXPECT_EQ(true, StringEndsWith("", ""));
|
||||
}
|
||||
|
Reference in New Issue
Block a user