Example #1
0
 /**
  * @test
  */
 public function shouldAllowGetPreviouslySetSecurityCode()
 {
     $card = new CreditCard();
     $card->setSecurityCode('theCode');
     $this->assertEquals('theCode', $card->getSecurityCode());
 }