game.movePlayer(Direction.RIGHT);
Tile newTile = tileAt(game, 1, 0);
assertEquals("Food added", food.getPoints(), player.getPoints());
assertEquals("Player moved", newTile.topSprite(), player);
assertFalse("Food gone", newTile.containsSprite(food));
}
/**
* Test what happens if the ghost moves into the player.