MCPcopy Create free account
hub / github.com/boostorg/filesystem / check_path

Function check_path

test/path_unit_test.cpp:74–86  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72std::string platform(BOOST_PLATFORM);
73
74void check_path(const path& source, const wstring& expected, const char* file, int line)
75{
76 if (source == expected)
77 return;
78
79 ++::boost::detail::test_errors();
80
81 std::cout << file;
82 std::wcout << L'(' << line << L"): source.wstring(): \""
83 << source.wstring()
84 << L"\" != expected: \"" << expected
85 << L"\"\n";
86}
87
88#ifdef BOOST_FILESYSTEM_WINDOWS_API
89void check_native(const path& p, const string&, const wstring& expected, const char* file, int line)

Callers

nothing calls this directly

Calls 1

wstringMethod · 0.80

Tested by

no test coverage detected