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