SerializableSectionPairParameterTest.cpp 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-17
  6. * Changed: 2023-03-25
  7. *
  8. * */
  9. #include <gtest/gtest.h>
  10. #include <ls-std/ls-std-io.hpp>
  11. #include <memory>
  12. using ls::std::io::NewLine;
  13. using ls::std::io::SectionPairRowSingleValue;
  14. using ls::std::io::SerializableSectionPairParameter;
  15. using std::make_shared;
  16. using testing::Test;
  17. namespace
  18. {
  19. class SerializableSectionPairParameterTest : public Test
  20. {
  21. public:
  22. SerializableSectionPairParameterTest() = default;
  23. ~SerializableSectionPairParameterTest() override = default;
  24. };
  25. TEST_F(SerializableSectionPairParameterTest, getNewLine)
  26. {
  27. ASSERT_STREQ(NewLine::get().c_str(), SerializableSectionPairParameter{}.getNewLine().c_str());
  28. }
  29. TEST_F(SerializableSectionPairParameterTest, getValue)
  30. {
  31. ASSERT_TRUE(SerializableSectionPairParameter{}.getValue() == nullptr);
  32. }
  33. TEST_F(SerializableSectionPairParameterTest, setNewLine)
  34. {
  35. SerializableSectionPairParameter parameter{};
  36. parameter.setNewLine("\r\n");
  37. ASSERT_STREQ("\r\n", parameter.getNewLine().c_str());
  38. }
  39. TEST_F(SerializableSectionPairParameterTest, setValue)
  40. {
  41. SerializableSectionPairParameter parameter{};
  42. parameter.setValue(make_shared<SectionPairRowSingleValue>("blue"));
  43. ASSERT_TRUE(parameter.getValue() != nullptr);
  44. }
  45. }