summaryrefslogtreecommitdiff
path: root/test/storage/storage.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/storage/storage.hpp')
-rw-r--r--test/storage/storage.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/storage/storage.hpp b/test/storage/storage.hpp
new file mode 100644
index 0000000000..d2402166a0
--- /dev/null
+++ b/test/storage/storage.hpp
@@ -0,0 +1,16 @@
+#ifndef MBGL_TEST_STORAGE_STORAGE
+#define MBGL_TEST_STORAGE_STORAGE
+
+#include "../fixtures/util.hpp"
+#include <uv.h>
+
+class Storage : public testing::Test {
+public:
+ static void SetUpTestCase();
+ static void TearDownTestCase();
+
+protected:
+ static pid_t pid;
+};
+
+#endif