IncompleteJsonExceptionTest.cpp 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2021-05-01
  6. * Changed: 2021-05-01
  7. *
  8. * */
  9. #include <gtest/gtest.h>
  10. #include <ls_std/ls_std.hpp>
  11. namespace
  12. {
  13. class IncompleteJsonExceptionTest : public ::testing::Test
  14. {
  15. protected:
  16. IncompleteJsonExceptionTest() = default;
  17. ~IncompleteJsonExceptionTest() override = default;
  18. void SetUp() override
  19. {}
  20. void TearDown() override
  21. {}
  22. };
  23. TEST_F(IncompleteJsonExceptionTest, constructor)
  24. {
  25. EXPECT_THROW({
  26. try
  27. {
  28. throw ls_std::IncompleteJsonException{};
  29. }
  30. catch (const ls_std::IncompleteJsonException &_exception)
  31. {
  32. EXPECT_STREQ("IncompleteJsonException thrown - this JSON string is incomplete.", _exception.what());
  33. throw;
  34. }
  35. }, ls_std::IncompleteJsonException);
  36. }
  37. }