JSONTest.cpp 686 B

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