| 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 |
no test coverage detected