/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2022-05-14 * Changed: 2023-03-27 * * */ #ifndef LS_STD_IO_TEST_DATA_FACTORY_HPP #define LS_STD_IO_TEST_DATA_FACTORY_HPP #include #include namespace test::io { class TestDataFactory { public: TestDataFactory(); ~TestDataFactory(); [[nodiscard]] static ::std::shared_ptr createXmlContent(); }; } #endif