Lines Matching refs:TC
85 for (auto const & TC : CompareTestCases) { in test_compare_basic() local
86 const path p1(TC.LHS); in test_compare_basic()
87 const path p2(TC.RHS); in test_compare_basic()
88 std::string RHS(TC.RHS); in test_compare_basic()
92 const int E = TC.expect; in test_compare_basic()
177 for (auto &TC : TestCases) { in test_compare_elements() local
178 fs::path LHS = BuildPath(TC.LHSElements); in test_compare_elements()
179 fs::path RHS = BuildPath(TC.RHSElements); in test_compare_elements()
180 const int ExpectCmp = CompareElements(TC.LHSElements, TC.RHSElements); in test_compare_elements()
181 assert(ExpectCmp == TC.Expect); in test_compare_elements()
183 assert(GotCmp == TC.Expect); in test_compare_elements()