|
|
@@ -7,14 +7,17 @@
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
-#include <cxxtest/TestSuite.h>
|
|
|
-#include <memory>
|
|
|
-
|
|
|
+// Define DEBUG in order to obtain certain checks...
|
|
|
#ifndef DEBUG
|
|
|
#define DEBUG
|
|
|
#endif
|
|
|
+
|
|
|
#include "pointer/maybe_null.hpp"
|
|
|
|
|
|
+#include <memory>
|
|
|
+
|
|
|
+#include <gmock/gmock.h>
|
|
|
+
|
|
|
class maybe_null_TestSuite : public CxxTest::TestSuite {
|
|
|
public:
|
|
|
using ptr_base = std::shared_ptr<int>;
|