Add a test to see it working
This commit is contained in:
parent
170c18762d
commit
303deb5940
1 changed files with 4 additions and 0 deletions
|
@ -1,5 +1,9 @@
|
||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
|
|
||||||
|
TEST(PacManTest, Allocate) {
|
||||||
|
EXPECT_EQ(0, 1);
|
||||||
|
}
|
||||||
|
|
||||||
int main(int argc, char* argv[]) {
|
int main(int argc, char* argv[]) {
|
||||||
testing::InitGoogleTest(&argc, argv);
|
testing::InitGoogleTest(&argc, argv);
|
||||||
return RUN_ALL_TESTS();
|
return RUN_ALL_TESTS();
|
||||||
|
|
Loading…
Reference in a new issue