fixed stair-building issue new test-cases added elevator support fixed/improved some walker modules
18 lines
315 B
C++
Executable File
18 lines
315 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 "/mnt/data/workspaces/Indoor/tests/data/" + name;
|
|
//return "/home/toni/Documents/programme/localization/Indoor/tests/data/" + name;
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif // TESTS_H
|