mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-05 19:19:39 -06:00
added files for Quadtree class and unit test file
This commit is contained in:
@@ -32,7 +32,8 @@
|
||||
|
||||
#include <test_common.inl>
|
||||
//#include <test_spicemanager.inl>
|
||||
#include <test_scenegraphloader.inl>
|
||||
//#include <test_scenegraphloader.inl>
|
||||
#include <test_quadtree.inl>
|
||||
//#include <test_luaconversions.inl>
|
||||
//#include <test_powerscalecoordinates.inl>
|
||||
#include <openspace/engine/openspaceengine.h>
|
||||
@@ -48,13 +49,19 @@ using namespace ghoul::filesystem;
|
||||
using namespace ghoul::logging;
|
||||
|
||||
namespace {
|
||||
std::string _loggerCat = "OpenSpaceTest";
|
||||
std::string _loggerCat = "OpenSpaceTest";
|
||||
}
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
std::vector<std::string> args;
|
||||
openspace::OpenSpaceEngine::create(argc, argv, std::make_unique<openspace::WindowWrapper>(), args);
|
||||
std::vector<std::string> args;
|
||||
openspace::OpenSpaceEngine::create(argc, argv, std::make_unique<openspace::WindowWrapper>(), args);
|
||||
|
||||
testing::InitGoogleTest(&argc, argv);
|
||||
return RUN_ALL_TESTS();
|
||||
testing::InitGoogleTest(&argc, argv);
|
||||
|
||||
int returnVal = RUN_ALL_TESTS();
|
||||
|
||||
// keep console from closing down
|
||||
int dummy; std::cin >> dummy;
|
||||
|
||||
return returnVal;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user