TestDataFactory.hpp 602 B

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