164db664ef
* Remove non-pacman exercises. * Use vcpkg instead of conan ( make vcpkg a submodule) * Merge the readmem these will need to be improve later
14 lines
319 B
C++
14 lines
319 B
C++
#include <gtest/gtest.h>
|
|
#include "PacMan.hpp"
|
|
|
|
TEST(PacManTest, InitialPosition) {
|
|
Board board;
|
|
PacMan pacMan(board);
|
|
EXPECT_EQ(pacMan.currentPosition().x, 14);
|
|
EXPECT_EQ(pacMan.currentPosition().y, 23);
|
|
}
|
|
|
|
int main(int argc, char* argv[]) {
|
|
testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|