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

Function initial_tests

test/operations_test.cpp:1704–1716  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1702 // initial_tests -------------------------------------------------------------------//
1703
1704 void initial_tests()
1705 {
1706 cout << "initial_tests..." << endl;
1707
1708 cout << " current_path().string() is\n \""
1709 << fs::initial_path().string()
1710 << "\"\n\n";
1711 BOOST_TEST(fs::initial_path() == fs::current_path());
1712 BOOST_TEST(fs::initial_path().is_absolute());
1713 BOOST_TEST(fs::current_path().is_absolute());
1714 BOOST_TEST(fs::initial_path().string()
1715 == fs::current_path().string());
1716 }
1717
1718 // space_tests ---------------------------------------------------------------------//
1719

Callers 1

cpp_mainFunction · 0.85

Calls 2

initial_pathFunction · 0.50
current_pathFunction · 0.50

Tested by

no test coverage detected