ClassWrapper.hpp 578 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: 2021-04-24
  7. * Changed: 2026-06-23
  8. *
  9. * */
  10. #ifndef LS_STD_CLASS_MOCK_HPP
  11. #define LS_STD_CLASS_MOCK_HPP
  12. #include <gmock/gmock.h>
  13. #include <ls-std/ls-std-core.hpp>
  14. namespace test::core
  15. {
  16. class ClassWrapper : public ls::standard::core::Class
  17. {
  18. public:
  19. ClassWrapper();
  20. ~ClassWrapper() noexcept override;
  21. MOCK_METHOD0(Die, void());
  22. };
  23. }
  24. #endif