renamed Method getTextView to toString in SiedlerBoard

This commit is contained in:
schrom01
2021-12-10 18:06:43 +01:00
parent 0ea44905e2
commit 70b2415b6b
4 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -107,7 +107,7 @@ public class SiedlerGameTest {
@DisplayName("Test")
public void TestHandle7() {
SiedlerGame game = startGame();
//todo
}
}
@@ -229,7 +229,7 @@ public class SiedlerGameTest {
public void TestGameAfterSetupPhase() {
SiedlerGame game = gameAfterSetupPhase();
System.out.println(game.getBoard().getTextView());
System.out.println(game.getBoard().toString());
throwDiceSeveralTimes(game, 5, 5);
throwDiceSeveralTimes(game, 5, 5);
@@ -311,7 +311,7 @@ public class SiedlerGameTest {
game.placeInitialRoad(secondRoad.first, secondRoad.second);
}
System.out.println(game.getBoard().getTextView());
System.out.println(game.getBoard().toString());
return game;
}