12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2021-05-01
- * Changed: 2023-02-07
- *
- * */
- #include <gtest/gtest.h>
- #include <ls-std/ls-std-core.hpp>
- #include <string>
- using namespace ls::std::core;
- namespace
- {
- class FileNotFoundExceptionTest : public ::testing::Test
- {
- protected:
- FileNotFoundExceptionTest() = default;
- ~FileNotFoundExceptionTest() override = default;
- void SetUp() override
- {}
- void TearDown() override
- {}
- };
- TEST_F(FileNotFoundExceptionTest, constructor)
- {
- EXPECT_THROW(
- {
- try
- {
- throw FileNotFoundException{};
- }
- catch (const FileNotFoundException &_exception)
- {
- ::std::string message = _exception.what();
- EXPECT_STREQ("FileNotFoundException thrown - file not found!", message.c_str());
- throw;
- }
- },
- FileNotFoundException);
- }
- TEST_F(FileNotFoundExceptionTest, constructor_dedicated_message)
- {
- EXPECT_THROW(
- {
- try
- {
- throw FileNotFoundException{R"("settings.txt" not found!)"};
- }
- catch (const FileNotFoundException &_exception)
- {
- ::std::string message = _exception.what();
- EXPECT_STREQ(R"(FileNotFoundException thrown - "settings.txt" not found!)", message.c_str());
- throw;
- }
- },
- FileNotFoundException);
- }
- }
|