summaryrefslogtreecommitdiff
path: root/test/storage/storage.hpp
blob: d2402166a01c69ee16b9f2deef69953ba545e411 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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