12 lines
202 B
C++
12 lines
202 B
C++
#include <gtest/gtest.h>
|
|
|
|
int main(int argc, char * argv[]) {
|
|
// Init gtest.
|
|
testing::InitGoogleTest(&argc, argv);
|
|
|
|
// Run all tests.
|
|
int result = RUN_ALL_TESTS();
|
|
|
|
return result;
|
|
}
|