/* * Author: Patrick-Christopher Mattulat * Co-Author: Claude Sonnet 4.6 (LLM) * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2021-04-24 * Changed: 2026-06-23 * * */ #ifndef LS_STD_CLASS_MOCK_HPP #define LS_STD_CLASS_MOCK_HPP #include #include namespace test::core { class ClassWrapper : public ls::standard::core::Class { public: ClassWrapper(); ~ClassWrapper() noexcept override; MOCK_METHOD0(Die, void()); }; } #endif