needed interface changes [new options] logger for android wifi-ap-optimization new test-cases
49 lines
984 B
C++
Executable File
49 lines
984 B
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) = "*LogDistanceCeilingModel*";
|
|
::testing::GTEST_FLAG(filter) = "*WiFiOptimizer*";
|
|
|
|
|
|
|
|
//::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;
|
|
|
|
}
|