26 TEST_CASE(
"Filesystem's 'exist' method determines the existence of a file.",
31 SECTION(
"Returns 'true' when the file exists.")
34 REQUIRE(filesystem.
exists(
"test/mavtables.conf"));
36 SECTION(
"Returns 'false' when the file does not exist.")
38 auto filesystem = std::make_unique<Filesystem>();
40 filesystem->exists(
"file_that_does_not_exist.conf"));
TEST_CASE("Filesystem's 'exist' method determines the existence of a file.", "[Filesystem]")
TEST_VIRTUAL bool exists(const path &p) const