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

Function overload_tests

test/path_test.cpp:144–162  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

142 // They pre-date operations_unit_test.cpp
143
144 void overload_tests()
145 {
146 std::cout << "overload_tests..." << std::endl;
147
148 fs::exists(p1);
149 fs::exists("foo");
150 fs::exists(std::string("foo"));
151
152 fs::exists(p1 / path("foo"));
153 fs::exists(p1 / "foo");
154 fs::exists(p1 / std::string("foo"));
155
156 fs::exists("foo" / p1);
157 fs::exists(std::string("foo") / p1);
158
159 p4 /= path("foo");
160 p4 /= "foo";
161 p4 /= std::string("foo");
162 }
163
164 // iterator_tests ------------------------------------------------------------------//
165

Callers 1

cpp_mainFunction · 0.85

Calls 3

existsFunction · 0.85
stringFunction · 0.70
pathFunction · 0.70

Tested by

no test coverage detected