MYNT-EYE-S-SDK/test/gtest_main.cc

14 lines
257 B
C++
Raw Normal View History

2018-04-03 05:27:28 +03:00
#include <stdio.h>
2018-04-25 06:32:54 +03:00
#include "gtest/gtest.h"
2018-04-03 05:27:28 +03:00
2018-04-25 06:32:54 +03:00
#include "mynteye/glog_init.h"
2018-04-03 05:27:28 +03:00
2018-04-25 06:32:54 +03:00
int main(int argc, char **argv) {
2018-04-03 05:27:28 +03:00
glog_init _(argc, argv);
printf("Running main() from gtest_main.cc\n");
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}