| 36 | std::vector< wchar_t > wv; // see main() for initialization to w, f, u, z |
| 37 | |
| 38 | void check(const fs::path& source, const std::string& expected, int line) |
| 39 | { |
| 40 | if (source.generic_string() == expected) |
| 41 | return; |
| 42 | |
| 43 | ++::boost::detail::test_errors(); |
| 44 | |
| 45 | std::cout << __FILE__ << '(' << line << ") source.string(): \"" << source.string() |
| 46 | << "\" != expected: \"" << expected |
| 47 | << "\"" << std::endl; |
| 48 | } |
| 49 | |
| 50 | // path_container_ctor_test ---------------------------------------------------------// |
| 51 |
nothing calls this directly
no test coverage detected