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

Function overload_tests

test/path_test.cpp:309–327  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

307// They pre-date operations_unit_test.cpp
308
309void overload_tests()
310{
311 std::cout << "overload_tests..." << std::endl;
312
313 fs::exists(p1);
314 fs::exists("foo");
315 fs::exists(std::string("foo"));
316
317 fs::exists(p1 / path("foo"));
318 fs::exists(p1 / "foo");
319 fs::exists(p1 / std::string("foo"));
320
321 fs::exists("foo" / p1);
322 fs::exists(std::string("foo") / p1);
323
324 p4 /= path("foo");
325 p4 /= "foo";
326 p4 /= std::string("foo");
327}
328
329// iterator_tests ------------------------------------------------------------------//
330

Callers 1

cpp_mainFunction · 0.85

Calls 3

stringFunction · 0.85
pathFunction · 0.70
existsFunction · 0.50

Tested by

no test coverage detected