Files
Sun1602/Tests/UtilityTest/main.cpp
T
2022-10-26 12:25:11 +08:00

11 lines
208 B
C++

#include <iostream>
#include <gtest/gtest.h>
int main(int argc, char* argv[]) {
std::cout << "Running UtilityTest" << std::endl;
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}