mirror of
https://github.com/solokeys/openpgp.git
synced 2026-03-11 17:15:00 -07:00
12 lines
247 B
C++
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;
|
|
}
|