|
@@ -0,0 +1,44 @@
|
|
|
+/*
|
|
|
+ * 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>
|
|
|
+#include <ls_std_test.hpp>
|
|
|
+
|
|
|
+namespace
|
|
|
+{
|
|
|
+ class IncompleteJsonExceptionTest : public ::testing::Test
|
|
|
+ {
|
|
|
+ protected:
|
|
|
+
|
|
|
+ IncompleteJsonExceptionTest() = default;
|
|
|
+ ~IncompleteJsonExceptionTest() override = default;
|
|
|
+
|
|
|
+ void SetUp() override
|
|
|
+ {}
|
|
|
+
|
|
|
+ void TearDown() override
|
|
|
+ {}
|
|
|
+ };
|
|
|
+
|
|
|
+ TEST_F(IncompleteJsonExceptionTest, constructor)
|
|
|
+ {
|
|
|
+ EXPECT_THROW({
|
|
|
+ try
|
|
|
+ {
|
|
|
+ throw ls_std::IncompleteJsonException{};
|
|
|
+ }
|
|
|
+ catch (const ls_std::IncompleteJsonException &_exception)
|
|
|
+ {
|
|
|
+ EXPECT_STREQ("IncompleteJsonException thrown - this JSON string is incomplete.", _exception.what());
|
|
|
+ throw;
|
|
|
+ }
|
|
|
+ }, ls_std::IncompleteJsonException);
|
|
|
+ }
|
|
|
+}
|