Lines Matching refs:kExpectedMatchesSorted
272 static const std::vector<std::string> kExpectedMatchesSorted = {"a.txt", "b.txt", "b/", "b/c.txt", in TEST() local
275 AssertIterationOrder("", "", kExpectedMatchesSorted); in TEST()
279 static const std::vector<std::string> kExpectedMatchesSorted = {"b/", "b/c.txt", "b/d.txt"}; in TEST() local
281 AssertIterationOrder("b/", "", kExpectedMatchesSorted); in TEST()
285 static const std::vector<std::string> kExpectedMatchesSorted = {"a.txt", "b.txt", "b/c.txt", in TEST() local
288 AssertIterationOrder("", ".txt", kExpectedMatchesSorted); in TEST()
292 static const std::vector<std::string> kExpectedMatchesSorted = {"b.txt", "b/c.txt", "b/d.txt"}; in TEST() local
294 AssertIterationOrder("b", ".txt", kExpectedMatchesSorted); in TEST()
298 static const std::vector<std::string> kExpectedMatchesSorted = {"a.txt"}; in TEST() local
300 AssertIterationOrderWithMatcher(matcher, kExpectedMatchesSorted); in TEST()
304 static const std::vector<std::string> kExpectedMatchesSorted = {"a.txt", "b.txt", "b/c.txt", in TEST() local
309 AssertIterationOrderWithMatcher(matcher, kExpectedMatchesSorted); in TEST()
313 static const std::vector<std::string> kExpectedMatchesSorted = {"a.txt", "b/c.txt", "b/d.txt"}; in TEST() local
318 AssertIterationOrderWithMatcher(matcher, kExpectedMatchesSorted); in TEST()