8 lines
97 B
C++
8 lines
97 B
C++
#include <gtest/gtest.h>
|
|
|
|
int main() {
|
|
testing::InitGoogleTest();
|
|
return RUN_ALL_TESTS();
|
|
}
|
|
|