11 lines
214 B
C++
11 lines
214 B
C++
#include <iostream>
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
int main(int argc, char* argv[]) {
|
|
std::cout << "Running ProgramCommonTest" << std::endl;
|
|
|
|
testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|