TestDataFactory.hpp 553 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2022-05-14
  6. * Changed: 2023-03-27
  7. *
  8. * */
  9. #ifndef LS_STD_IO_TEST_DATA_FACTORY_HPP
  10. #define LS_STD_IO_TEST_DATA_FACTORY_HPP
  11. #include <ls-std/ls-std-io.hpp>
  12. #include <memory>
  13. namespace test::io
  14. {
  15. class TestDataFactory
  16. {
  17. public:
  18. TestDataFactory();
  19. ~TestDataFactory();
  20. [[nodiscard]] static ::std::shared_ptr<ls::std::io::XmlNode> createXmlContent();
  21. };
  22. }
  23. #endif