Skip to content

Commit 0f18f9c

Browse files
committed
Add ProjectDownloaderFactoryMock
1 parent 591c582 commit 0f18f9c

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#pragma once
2+
3+
#include <internal/iprojectdownloaderfactory.h>
4+
#include <gmock/gmock.h>
5+
6+
using namespace libscratchcpp;
7+
8+
class ProjectDownloaderFactoryMock : public IProjectDownloaderFactory
9+
{
10+
public:
11+
MOCK_METHOD(std::shared_ptr<IProjectDownloader>, create, (), (const, override));
12+
};

0 commit comments

Comments
 (0)