deleting from the grid is now bleaching fast added new helper methods many new test-cases many new methods for geo classes and others added a bunch of new grid-walkers
28 lines
358 B
C++
Executable File
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) = "*Walk*";
|
|
|
|
return RUN_ALL_TESTS();
|
|
#endif
|
|
|
|
|
|
return 0;
|
|
|
|
}
|