pacman/pacman/test/tests.cpp

10 lines
179 B
C++
Raw Normal View History

2020-11-27 16:48:38 +00:00
#include <gtest/gtest.h>
2020-11-27 17:03:20 +00:00
TEST(PacManTest, Allocate) {
EXPECT_EQ(0, 1);
}
2020-11-27 16:48:38 +00:00
int main(int argc, char* argv[]) {
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}