From c2ed85340a53525d201a67497e78020428763bc0 Mon Sep 17 00:00:00 2001 From: fdai7753 Date: Thu, 8 Feb 2024 00:20:04 +0100 Subject: [PATCH] Added unfinished Ghost moving doesn't change position test --- src/test/java/pacmanTests/GhostTest.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/test/java/pacmanTests/GhostTest.java b/src/test/java/pacmanTests/GhostTest.java index 17fac9a..0e066b2 100644 --- a/src/test/java/pacmanTests/GhostTest.java +++ b/src/test/java/pacmanTests/GhostTest.java @@ -23,6 +23,10 @@ class GhostTest { Vector2 position = ghost.position; // assert assertThat(position).isEqualTo(expectedPosition); + } + @Test + void Ghosts_moving_doesntchangePosition() { + } @Test void Ghosts_wall_obstructsMovement() {