Browse Source

removed old Test

main
fdai7012 11 months ago
parent
commit
0982b2fd9b
  1. 15
      src/test/java/pacmanTests/GhostTest.java

15
src/test/java/pacmanTests/GhostTest.java

@ -10,20 +10,7 @@ import pacmanGame.*;
class GhostTest { class GhostTest {
@Test
void Ghosts_moving_changesPosition() {
// arrange
GameManager gameManager = new GameManager();
Ghost ghost = gameManager.ghosts[0];
ghost.position = new Vector2(2,2);
Vector2 direction = new Vector2(1,0);
Vector2 expectedPosition = new Vector2(3,2);
// act
ghost.move(direction);
Vector2 position = ghost.position;
// assert
assertThat(position).isEqualTo(expectedPosition);
}
@Test @Test
void Ghosts_moving_doesntchangePosition() { void Ghosts_moving_doesntchangePosition() {
// arrange // arrange

Loading…
Cancel
Save