@Test
  public void testFillSudokuGame() throws Exception {
    Random random = new Random();
    moveThroughGame(game, (i, j) -> Int.fromInteger(random.nextInt(SIZE * SIZE) + 1));

    assertThat(game.isFill(), is(true));
  }