8 lines
137 B
C++
8 lines
137 B
C++
|
|
#include <gtest/gtest.h>
|
||
|
|
|
||
|
|
int main(int _argc, char** _argv) {
|
||
|
|
|
||
|
|
testing::InitGoogleTest(&_argc, _argv);
|
||
|
|
return RUN_ALL_TESTS();
|
||
|
|
}
|