Ejemplo n.º 1
0
 /**
  * @test
  */
 public function shouldAllowGetPreviouslySetToken()
 {
     $card = new CreditCard();
     $card->setToken('theToken');
     $this->assertEquals('theToken', $card->getToken());
 }