We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 591c582 commit 0f18f9cCopy full SHA for 0f18f9c
1 file changed
test/mocks/projectdownloaderfactorymock.h
@@ -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