コード例 #1
0
ファイル: AddressTest.php プロジェクト: extcode/cart
 /**
  * @test
  */
 public function getFullNameReturnsCorrectConcatenation()
 {
     $firstName = 'first name';
     $this->address->setFirstName($firstName);
     $lastName = 'last name';
     $this->address->setLastName($lastName);
     $this->assertEquals($firstName . ' ' . $lastName, $this->address->getFullName());
 }