15 lines
226 B
C++
Executable File
15 lines
226 B
C++
Executable File
#ifndef TESTS_H
|
|
#define TESTS_H
|
|
|
|
#ifdef WITH_TESTS
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
static inline std::string getDataFile(const std::string& name) {
|
|
return "/apps/workspaces/Indoor/tests/data/" + name;
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif // TESTS_H
|