TestDataFactory.hpp 584 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-09-16
  6. * Changed: 2021-05-02
  7. *
  8. * */
  9. #ifndef LS_STD_TEST_DATA_FACTORY_HPP
  10. #define LS_STD_TEST_DATA_FACTORY_HPP
  11. #include <ls_std/ls_std.hpp>
  12. namespace ls_std_test
  13. {
  14. class TestDataFactory
  15. {
  16. public:
  17. TestDataFactory() = default;
  18. ~TestDataFactory() = default;
  19. static ls_std::StateMachine createStateMachine();
  20. static std::shared_ptr<ls_std::XmlNode> createXmlContent();
  21. };
  22. }
  23. #endif