mirror of
https://github.com/ModOrganizer2/modorganizer-bsapacker.git
synced 2026-07-27 14:06:14 -07:00
11 lines
287 B
C++
11 lines
287 B
C++
#include <bsapacker/IArchiveAutoService.h>
|
|
#include <gmock/gmock.h>
|
|
|
|
using namespace BsaPacker;
|
|
|
|
class MockArchiveAutoService : public IArchiveAutoService
|
|
{
|
|
public:
|
|
MOCK_METHOD(bool, CreateBSA, (libbsarch::bs_archive_auto *, const QString &, bsa_archive_type_e), (const, override));
|
|
};
|