/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2021-05-01 * Changed: 2023-02-07 * * */ #include #include #include using namespace ls::std::core; namespace { class FileOperationExceptionTest : public ::testing::Test { protected: FileOperationExceptionTest() = default; ~FileOperationExceptionTest() override = default; void SetUp() override {} void TearDown() override {} }; TEST_F(FileOperationExceptionTest, constructor) { EXPECT_THROW( { try { throw FileOperationException{}; } catch (const FileOperationException &_exception) { ::std::string message = _exception.what(); EXPECT_STREQ("FileOperationException thrown - file operation failed!", message.c_str()); throw; } }, FileOperationException); } TEST_F(FileOperationExceptionTest, constructor_dedicated_message) { EXPECT_THROW( { try { throw FileOperationException{R"(creating directory "tmp")"}; } catch (const FileOperationException &_exception) { ::std::string message = _exception.what(); EXPECT_STREQ(R"(FileOperationException thrown - creating directory "tmp")", message.c_str()); throw; } }, FileOperationException); } }