| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Co-Author: Claude Sonnet 4.6 (LLM)
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2021-05-01
- * Changed: 2026-06-23
- *
- * */
- #include <gtest/gtest.h>
- #include <ls-std/ls-std-core.hpp>
- #include <string>
- using ls::standard::core::IllegalArithmeticOperationException;
- using std::string;
- using testing::Test;
- namespace
- {
- class IllegalArithmeticOperationExceptionTest : public Test
- {
- public:
- IllegalArithmeticOperationExceptionTest() = default;
- ~IllegalArithmeticOperationExceptionTest() override = default;
- };
- TEST_F(IllegalArithmeticOperationExceptionTest, constructor)
- {
- EXPECT_THROW(
- {
- try
- {
- throw IllegalArithmeticOperationException{};
- }
- catch (const IllegalArithmeticOperationException &_exception)
- {
- const string actual = _exception.what();
- const string expected = _exception.getName() + " thrown - arithmetic operation is not allowed!";
- EXPECT_STREQ(expected.c_str(), actual.c_str());
- throw;
- }
- },
- IllegalArithmeticOperationException);
- }
- TEST_F(IllegalArithmeticOperationExceptionTest, constructor_dedicated_message)
- {
- EXPECT_THROW(
- {
- try
- {
- throw IllegalArithmeticOperationException{"division by zero"};
- }
- catch (const IllegalArithmeticOperationException &_exception)
- {
- const string actual = _exception.what();
- const string expected = _exception.getName() + " thrown - division by zero";
- EXPECT_STREQ(expected.c_str(), actual.c_str());
- throw;
- }
- },
- IllegalArithmeticOperationException);
- }
- TEST_F(IllegalArithmeticOperationExceptionTest, getName)
- {
- ASSERT_STREQ("IllegalArithmeticOperationException", IllegalArithmeticOperationException{}.getName().c_str());
- }
- }
|