Home | History | Annotate | Download | only in ADT

Lines Matching refs:expected

145   SmallVector<StringRef, 5> expected;
147 expected.push_back("ab"); expected.push_back("c");
149 EXPECT_TRUE(parts == expected);
151 expected.clear(); parts.clear();
152 expected.push_back(""); expected.push_back("ab"); expected.push_back("");
153 expected.push_back("c"); expected.push_back("");
155 EXPECT_TRUE(parts == expected);
157 expected.clear(); parts.clear();
158 expected.push_back("");
160 EXPECT_TRUE(parts == expected);
162 expected.clear(); parts.clear();
164 EXPECT_TRUE(parts == expected);
166 expected.clear(); parts.clear();
168 EXPECT_TRUE(parts == expected);
170 expected.clear(); parts.clear();
171 expected.push_back(""); expected.push_back("");
173 EXPECT_TRUE(parts == expected);
175 expected.clear(); parts.clear();
176 expected.push_back("a"); expected.push_back("b");
178 EXPECT_TRUE(parts == expected);
181 expected.clear(); parts.clear();
182 expected.push_back("a,,b,c");
184 EXPECT_TRUE(parts == expected);
186 expected.clear(); parts.clear();
187 expected.push_back("a,,b,c");
189 EXPECT_TRUE(parts == expected);
191 expected.clear(); parts.clear();
192 expected.push_back("a"); expected.push_back(",b,c");
194 EXPECT_TRUE(parts == expected);
196 expected.clear(); parts.clear();
197 expected.push_back("a"); expected.push_back(",b,c");
199 EXPECT_TRUE(parts == expected);
201 expected.clear(); parts.clear();
202 expected.push_back("a"); expected.push_back(""); expected.push_back("b,c");
204 EXPECT_TRUE(parts == expected);
206 expected.clear(); parts.clear();
207 expected.push_back("a"); expected.push_back("b,c");
209 EXPECT_TRUE(parts == expected);
211 expected.clear(); parts.clear();
212 expected.push_back("a"); expected.push_back(""); expected.push_back("b");
213 expected.push_back("c");
215 EXPECT_TRUE(parts == expected);
217 expected.clear(); parts.clear();
218 expected.push_back("a"); expected.push_back("b"); expected.push_back("c");
220 EXPECT_TRUE(parts == expected);