TestDataFactory.hpp 531 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-09-16
  6. * Changed: 2020-09-16
  7. *
  8. * */
  9. #ifndef LS_STD_TEST_DATA_FACTORY_HPP
  10. #define LS_STD_TEST_DATA_FACTORY_HPP
  11. #include "../source/logic/StateMachine.hpp"
  12. namespace ls_std_test {
  13. class TestDataFactory {
  14. public:
  15. TestDataFactory() = default;
  16. ~TestDataFactory() = default;
  17. static ls_std::StateMachine createStateMachine();
  18. };
  19. }
  20. #endif