|
@@ -0,0 +1,47 @@
|
|
|
+/*
|
|
|
+* Author: Patrick-Christopher Mattulat
|
|
|
+* Company: Lynar Studios
|
|
|
+* E-Mail: webmaster@lynarstudios.com
|
|
|
+* Created: 2023-02-07
|
|
|
+* Changed: 2023-02-07
|
|
|
+*
|
|
|
+* */
|
|
|
+
|
|
|
+#include <gtest/gtest.h>
|
|
|
+#include <ls-std/ls-std-core.hpp>
|
|
|
+
|
|
|
+using namespace ls::std::core;
|
|
|
+
|
|
|
+namespace
|
|
|
+{
|
|
|
+ class ExceptionMessageTest : public ::testing::Test
|
|
|
+ {
|
|
|
+ protected:
|
|
|
+
|
|
|
+ ExceptionMessageTest() = default;
|
|
|
+ ~ExceptionMessageTest() override = default;
|
|
|
+
|
|
|
+ void SetUp() override
|
|
|
+ {}
|
|
|
+
|
|
|
+ void TearDown() override
|
|
|
+ {}
|
|
|
+ };
|
|
|
+
|
|
|
+ TEST_F(ExceptionMessageTest, toCharacterPointer)
|
|
|
+ {
|
|
|
+ ::std::string text = "hello!";
|
|
|
+
|
|
|
+ ExceptionMessage message{text};
|
|
|
+ char *characterPointer = message.toCharacterPointer();
|
|
|
+ ASSERT_STREQ(text.c_str(), characterPointer);
|
|
|
+
|
|
|
+ delete[] characterPointer;
|
|
|
+ }
|
|
|
+
|
|
|
+ TEST_F(ExceptionMessageTest, toCharacterPointer_empty)
|
|
|
+ {
|
|
|
+ ExceptionMessage message{""};
|
|
|
+ ASSERT_TRUE(message.toCharacterPointer() == nullptr);
|
|
|
+ }
|
|
|
+}
|