コード例 #1
0
ファイル: TokenTest.php プロジェクト: stan5621/eduwind
 /**
  * @test
  */
 public function shouldAllowGetPreviouslySetPaymentName()
 {
     $token = new Token();
     $token->setPaymentName('theName');
     $this->assertSame('theName', $token->getPaymentName());
 }