12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /*
- * 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 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);
- }
- }
|