Files
openpgp/gtest/ptest.cpp
2019-06-30 01:02:28 -07:00

12 lines
247 B
C++

#include <gtest/gtest.h>
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
auto ret = RUN_ALL_TESTS();
if (ret == 0)
printf("[TestsOk]\n");
else
printf("[TestsError]\n");
return ret;
}