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 b503fb9bdc pushing before transfering ownership
added new tests and new helper classes
speed improvements
minor fixes
2016-01-25 17:54:58 +01:00

28 lines
358 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);
//::testing::GTEST_FLAG(filter) = "*Importance*";
::testing::GTEST_FLAG(filter) = "*Length*";
return RUN_ALL_TESTS();
#endif
return 0;
}