Example #1
0
 @Test
 public void testPrintBoard() throws InvalidInputException {
   Cells cells = mock(Cells.class);
   Board board = new Board(cells);
   board.printBoard();
   verify(cells, times(1)).displayValue();
 }