Add a test to see it working

This commit is contained in:
Patricia Aas 2020-11-27 18:03:20 +01:00
parent 170c18762d
commit 303deb5940

View file

@ -1,5 +1,9 @@
#include <gtest/gtest.h>
TEST(PacManTest, Allocate) {
EXPECT_EQ(0, 1);
}
int main(int argc, char* argv[]) {
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();