@Test
  public void testPokerPlayerSetnGetCard() {
    PokerPlayer testPlayer = new PokerPlayer();

    // Testing setCardAtI() and getcard()
    testPlayer.setCardAtI(0, "FourClubs");
    assertEquals("FourClubs", testPlayer.getCard(0).toString());
  }