We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de8b7c1 commit 686213eCopy full SHA for 686213e
1 file changed
test/mocks/downloaderfactorymock.h
@@ -0,0 +1,12 @@
1
+#pragma once
2
+
3
+#include <internal/idownloaderfactory.h>
4
+#include <gmock/gmock.h>
5
6
+using namespace libscratchcpp;
7
8
+class DownloaderFactoryMock : public IDownloaderFactory
9
+{
10
+ public:
11
+ MOCK_METHOD(std::shared_ptr<IDownloader>, create, (), (const, override));
12
+};
0 commit comments