summaryrefslogtreecommitdiff
path: root/test/fixtures/util.hpp
blob: f1201d34e734203b01fdacb8482112676162a47d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef MBGL_TEST_UTIL
#define MBGL_TEST_UTIL

#include <gtest/gtest.h>

#define SCOPED_TEST(name) \
    static class name { \
        bool completed = false; \
    public: \
        void finish() { EXPECT_FALSE(completed) << #name " was already completed."; completed = true; } \
        ~name() { if (!completed) ADD_FAILURE() << #name " didn't complete."; } \
    } name;

namespace mbgl {
namespace test {

const std::string &getBaseDirectory();
pid_t startServer(const char *executable);
void stopServer(pid_t pid);

}
}

#endif