Exemplo n.º 1
0
 /**
  * @dataProvider \Bnowak\CardGame\Tests\TestDataProvider::getCardsDataArray
  */
 public function testGetSuit(string $figure, string $suit = null)
 {
     $card = new Card($figure, $suit);
     $this->assertSame((string) $suit, $card->getSuit());
 }