renamed Method getTextView to toString in SiedlerBoard
This commit is contained in:
@@ -38,7 +38,7 @@ public class SiedlerBoardTest {
|
||||
|
||||
@Test
|
||||
public void testLongestRoadSimple() {
|
||||
System.out.println(board.getTextView());
|
||||
System.out.println(board.toString());
|
||||
|
||||
assertEquals(Config.Faction.BLUE, board.getLongestRoadFaction(factionList));
|
||||
assertEquals(6, board.getLongestRoadLength());
|
||||
@@ -47,7 +47,7 @@ public class SiedlerBoardTest {
|
||||
@Test
|
||||
public void testLongestRoadWithInterrupt() {
|
||||
board.setCorner(new Point(4, 10), new Settlement(Config.Faction.RED, new Point(4, 10)));
|
||||
System.out.println(board.getTextView());
|
||||
System.out.println(board.toString());
|
||||
|
||||
assertEquals(Config.Faction.BLUE, board.getLongestRoadFaction(factionList));
|
||||
assertEquals(5, board.getLongestRoadLength());
|
||||
|
||||
Reference in New Issue
Block a user