Cdroid/tests/porting/testmain.cc
2021-06-24 10:12:55 +08:00

24 lines
471 B
C++
Executable File

#include <gtest/gtest.h>
#include <cdtypes.h>
#include <cdlog.h>
#include <cdgraph.h>
#include <math.h>
class HALEnvironment: public testing::Environment{
public:
void SetUp(){
GFXInit();
};
void TearDown(){
//sleep(5);
}
};
int main(int argc, char*argv[])
{
LogParseModules(argc,(const char**)argv);
testing::AddGlobalTestEnvironment(new HALEnvironment);
testing::InitGoogleTest(&argc,argv);
return RUN_ALL_TESTS();
}