MYNT-EYE-S-SDK/test/gtest_main.cc
2018-04-25 11:32:54 +08:00

14 lines
257 B
C++

#include <stdio.h>
#include "gtest/gtest.h"
#include "mynteye/glog_init.h"
int main(int argc, char **argv) {
glog_init _(argc, argv);
printf("Running main() from gtest_main.cc\n");
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}