This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Indoor/main.cpp
kazu 8930be1e2c added new sanity-check assertions
fixed issue with angles [bad interface]
- adjusted other parts accordingly
- added corresponding test-cases
started working on absolute heading
2017-03-31 11:47:29 +02:00

52 lines
1.1 KiB
C++
Executable File

#include "grid/Grid.h"
#include "grid/GridPoint.h"
class Test : public GridPoint {
};
#include "tests/Tests.h"
int main(int argc, char** argv) {
#ifdef WITH_TESTS
::testing::InitGoogleTest(&argc, argv);
// skip all tests starting with LIVE_
//::testing::GTEST_FLAG(filter) = "*Barometer*";
//::testing::GTEST_FLAG(filter) = "*Distribution.T*";
//::testing::GTEST_FLAG(filter) = "*RingBuffer*";
//::testing::GTEST_FLAG(filter) = "*Grid.*";
//::testing::GTEST_FLAG(filter) = "*Dijkstra.*";
//::testing::GTEST_FLAG(filter) = "*LogDistanceCeilingModelBeacon*";
//::testing::GTEST_FLAG(filter) = "*WiFiOptimizer*";
//::testing::GTEST_FLAG(filter) = "*Offline.readWrite*";
::testing::GTEST_FLAG(filter) = "*Angle*";
//::testing::GTEST_FLAG(filter) = "*Barometer*";
//::testing::GTEST_FLAG(filter) = "*GridWalk2RelPressure*";
//::testing::GTEST_FLAG(filter) = "Heading*";
//::testing::GTEST_FLAG(filter) = "*WiFiVAPGrouper*";
//::testing::GTEST_FLAG(filter) = "*Offline*";
//::testing::GTEST_FLAG(filter) = "*Walk*";
return RUN_ALL_TESTS();
#endif
return 0;
}