We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e88c2e commit 9c3efecCopy full SHA for 9c3efec
test/src/Print/test_print.cpp
@@ -12,20 +12,7 @@
12
13
#include <Print.h>
14
15
-/**************************************************************************************
16
- * TEST HELPER
17
- **************************************************************************************/
18
-
19
-class PrintMock : public Print
20
-{
21
-public:
22
- std::string _str;
23
- virtual size_t write(uint8_t b)
24
- {
25
- _str.append(1, static_cast<char>(b));
26
- return 1;
27
- }
28
-};
+#include <PrintMock.h>
29
30
/**************************************************************************************
31
* TEST CODE
0 commit comments