JsonTest.cpp 700 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-08-14
  6. * Changed: 2021-05-02
  7. *
  8. * */
  9. #include <gtest/gtest.h>
  10. #include <ls_std/lib/nlohmann_json/include/nlohmann/json.hpp>
  11. namespace
  12. {
  13. class JsonTest : public ::testing::Test
  14. {
  15. protected:
  16. JsonTest() = default;
  17. ~JsonTest() override = default;
  18. void SetUp() override
  19. {}
  20. void TearDown() override
  21. {}
  22. };
  23. TEST_F(JsonTest, simpleSerialization)
  24. {
  25. nlohmann::json jsonObject{};
  26. jsonObject["value"] = 1989;
  27. ASSERT_STREQ(R"({"value":1989})", jsonObject.dump().c_str());
  28. }
  29. }