Lines Matching refs:components
105 std::vector<std::string> components; in TEST_F() local
107 StringHelper::SplitString("", '.', &components); in TEST_F()
108 EXPECT_EQ(std::vector<std::string>({""}), components); in TEST_F()
109 StringHelper::SplitString("a.", '.', &components); in TEST_F()
110 EXPECT_EQ(std::vector<std::string>({"a", ""}), components); in TEST_F()
111 StringHelper::SplitString(".a", '.', &components); in TEST_F()
112 EXPECT_EQ(std::vector<std::string>({"", "a"}), components); in TEST_F()
113 StringHelper::SplitString("..", '.', &components); in TEST_F()
114 EXPECT_EQ(std::vector<std::string>({"", "", ""}), components); in TEST_F()
115 StringHelper::SplitString("asdf.asdf", '.', &components); in TEST_F()
116 EXPECT_EQ(std::vector<std::string>({"asdf", "asdf"}), components); in TEST_F()