Skip to content

Commit

Permalink
uncomment stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
NakataRin committed Aug 20, 2024
1 parent e2ea888 commit 4232837
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UwUSnakeTests/UnitTest1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ public void Logic_ShouldIncreaseScoreAndGrowSnake_OnEatingFood()
UwU.foodX = 6;
UwU.foodY = 5;

//Console.WriteLine($"Before Logic - Snake(x,y): ({UwU.snakeX},{UwU.snakeY}), Food(x,y): ({UwU.foodX}, {UwU.foodY}), Score - {UwU.score}");
Console.WriteLine($"Before Logic - Snake(x,y): ({UwU.snakeX},{UwU.snakeY}), Food(x,y): ({UwU.foodX}, {UwU.foodY}), Score - {UwU.score}");

UwU.Logic();

//Console.WriteLine($"After Logic - Snake(x,y): ({UwU.snakeX},{UwU.snakeY}), Food(x,y): ({UwU.foodX}, {UwU.foodY}), Score - {UwU.score}");
Console.WriteLine($"After Logic - Snake(x,y): ({UwU.snakeX},{UwU.snakeY}), Food(x,y): ({UwU.foodX}, {UwU.foodY}), Score - {UwU.score}");

Assert.AreEqual(1, UwU.score);
Assert.AreEqual(initialLength + 1, UwU.snakeBody.Count);
Expand Down

0 comments on commit 4232837

Please sign in to comment.