@Test
  public void testCheckForWin() {
    GameLogic g = new GameLogic();

    g.ticBox(0);
    g.ticBox(1);

    assertEquals(false, g.checkForWin());

    g.ticBox(2);
    g.ticBox(8);
    g.ticBox(3);
    g.ticBox(4);
    g.ticBox(5);

    assertEquals(false, g.checkForWin());

    g.ticBox(7);

    assertEquals(true, g.checkForWin());
  }