#include #include #include using namespace std::literals::string_literals; TEST_SEQUENCE("FileAccess") { const auto FilePath = std::fs::current_path() / "file.txt"; const auto FileContent = "Hello World"; { hex::fs::File file(FilePath, hex::fs::File::Mode::Create); TEST_ASSERT(file.isValid()); file.write(FileContent); } { hex::fs::File file(FilePath, hex::fs::File::Mode::Read); TEST_ASSERT(file.isValid()); TEST_ASSERT(file.readString() == FileContent); } { hex::fs::File file(FilePath, hex::fs::File::Mode::Write); TEST_ASSERT(file.isValid()); file.remove(); TEST_ASSERT(!file.isValid()); } { hex::fs::File file(FilePath, hex::fs::File::Mode::Read); if (file.isValid()) TEST_FAIL(); } TEST_SUCCESS(); };