diff options
author | InigoGutierrez <inigogf.95@gmail.com> | 2022-12-14 15:41:49 +0100 |
---|---|---|
committer | InigoGutierrez <inigogf.95@gmail.com> | 2022-12-14 15:41:49 +0100 |
commit | 824d5e3b6954407a694f5739cbeb40f66324c8d7 (patch) | |
tree | 2edd317df4a83afbb305e017f3d5afd92b6b5422 /tests/test_gameMove.py | |
parent | e8b9bf589e698b51e55ae59693b5bb0293f86a26 (diff) | |
download | imago-824d5e3b6954407a694f5739cbeb40f66324c8d7.tar.gz imago-824d5e3b6954407a694f5739cbeb40f66324c8d7.zip |
Developing Unit Testing.
Diffstat (limited to 'tests/test_gameMove.py')
-rw-r--r-- | tests/test_gameMove.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_gameMove.py b/tests/test_gameMove.py index 6569c5b..a7edfab 100644 --- a/tests/test_gameMove.py +++ b/tests/test_gameMove.py @@ -18,13 +18,13 @@ class TestGameMove(unittest.TestCase): self.assertIsNone(firstMove.coords) - secondMove = firstMove.addMove(1, 2) + secondMove = firstMove.addMoveByCoords(1, 2) self.assertIsNone(firstMove.coords) self.assertEqual(secondMove.coords[0], 1) self.assertEqual(secondMove.coords[1], 2) - thirdMove = secondMove.addMove(5, 7) + thirdMove = secondMove.addMoveByCoords(5, 7) self.assertIsNone(firstMove.coords) self.assertIsNone(thirdMove.previousMove.previousMove.coords) @@ -66,7 +66,7 @@ class TestGameMove(unittest.TestCase): (2,0), (2,1), (2,2))) ) - secondMove = firstMove.addMove(1, 2) + secondMove = firstMove.addMoveByCoords(1, 2) self.assertSetEqual( secondMove.getPlayableVertices(), set(((0,0), (0,1), (0,2), |