We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27b1734 commit 9f03569Copy full SHA for 9f03569
1 file changed
test/mocks/audioinputmock.h
@@ -0,0 +1,12 @@
1
+#pragma once
2
+
3
+#include <audio/iaudioinput.h>
4
+#include <gmock/gmock.h>
5
6
+using namespace libscratchcpp;
7
8
+class AudioInputMock : public IAudioInput
9
+{
10
+ public:
11
+ MOCK_METHOD(std::shared_ptr<IAudioLoudness>, audioLoudness, (), (const, override));
12
+};
0 commit comments