pacman/test/tests.cpp

7 lines
130 B
C++
Raw Normal View History

2021-06-22 10:58:18 +00:00
#include <gtest/gtest.h>
2020-11-27 16:48:38 +00:00
2021-06-22 10:58:18 +00:00
int main(int argc, char * argv[]) {
2020-11-27 16:48:38 +00:00
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
2020-11-29 18:28:42 +00:00
}