|
@@ -0,0 +1,43 @@
|
|
|
+/*
|
|
|
+ * Author: Patrick-Christopher Mattulat
|
|
|
+ * Company: Lynar Studios
|
|
|
+ * E-Mail: webmaster@lynarstudios.com
|
|
|
+ * Created: 2021-05-01
|
|
|
+ * Changed: 2021-05-01
|
|
|
+ *
|
|
|
+ * */
|
|
|
+
|
|
|
+#include <gtest/gtest.h>
|
|
|
+#include <ls_std/ls_std.hpp>
|
|
|
+
|
|
|
+namespace
|
|
|
+{
|
|
|
+ class IllegalArithmeticOperationExceptionTest : public ::testing::Test
|
|
|
+ {
|
|
|
+ protected:
|
|
|
+
|
|
|
+ IllegalArithmeticOperationExceptionTest() = default;
|
|
|
+ ~IllegalArithmeticOperationExceptionTest() override = default;
|
|
|
+
|
|
|
+ void SetUp() override
|
|
|
+ {}
|
|
|
+
|
|
|
+ void TearDown() override
|
|
|
+ {}
|
|
|
+ };
|
|
|
+
|
|
|
+ TEST_F(IllegalArithmeticOperationExceptionTest, constructor)
|
|
|
+ {
|
|
|
+ EXPECT_THROW({
|
|
|
+ try
|
|
|
+ {
|
|
|
+ throw ls_std::IllegalArithmeticOperationException{};
|
|
|
+ }
|
|
|
+ catch (const ls_std::IllegalArithmeticOperationException &_exception)
|
|
|
+ {
|
|
|
+ EXPECT_STREQ("IllegalArithmeticOperationException thrown - arithmetic operation is not allowed!", _exception.what());
|
|
|
+ throw;
|
|
|
+ }
|
|
|
+ }, ls_std::IllegalArithmeticOperationException);
|
|
|
+ }
|
|
|
+}
|