summaryrefslogtreecommitdiff
path: root/test/storage/storage.hpp
blob: 3dc13d0d9fe93108181b088e2a81338ff812fd7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef MBGL_TEST_STORAGE_STORAGE
#define MBGL_TEST_STORAGE_STORAGE

#include "../fixtures/util.hpp"
#include <mbgl/storage/response.hpp>
#include <memory>

class Storage : public testing::Test {
public:
    static void SetUpTestCase();
    static void TearDownTestCase();

protected:
    static std::unique_ptr<mbgl::test::Server> server;
};

#endif