Lines Matching refs:TestPath
38 const CharT* TestPath = MS; in RunTestCaseImpl() local
39 const CharT* TestPathEnd = StrEnd(TestPath); in RunTestCaseImpl()
40 const std::size_t Size = TestPathEnd - TestPath; in RunTestCaseImpl()
45 const std::basic_string<CharT> S(TestPath); in RunTestCaseImpl()
48 assert(p.string<CharT>() == TestPath); in RunTestCaseImpl()
52 const std::basic_string_view<CharT> S(TestPath); in RunTestCaseImpl()
55 assert(p.string<CharT>() == TestPath); in RunTestCaseImpl()
60 path p(TestPath, args...); in RunTestCaseImpl()
62 assert(p.string<CharT>() == TestPath); in RunTestCaseImpl()
65 path p(TestPath, TestPathEnd, args...); in RunTestCaseImpl()
67 assert(p.string<CharT>() == TestPath); in RunTestCaseImpl()
72 path p(It{TestPath}, args...); in RunTestCaseImpl()
74 assert(p.string<CharT>() == TestPath); in RunTestCaseImpl()
78 path p(It{TestPath}, It{TestPathEnd}, args...); in RunTestCaseImpl()
80 assert(p.string<CharT>() == TestPath); in RunTestCaseImpl()