mirror of
https://github.com/ModOrganizer2/modorganizer-bsapacker.git
synced 2026-07-27 14:06:14 -07:00
10 lines
271 B
C++
10 lines
271 B
C++
#include <bsapacker/IDummyPluginServiceFactory.h>
|
|
#include <gmock/gmock.h>
|
|
|
|
using namespace BsaPacker;
|
|
|
|
class MockDummyPluginServiceFactory : public IDummyPluginServiceFactory
|
|
{
|
|
public:
|
|
MOCK_METHOD(std::unique_ptr<IDummyPluginService>, Create, (), (const, override));
|
|
}; |