コード例 #1
0
ファイル: AddressTest.php プロジェクト: DavidHavl/Ajasta
 /**
  * @covers ::setDependentLocality
  * @covers ::getDependentLocality
  */
 public function testSetGetDependentLocality()
 {
     $this->address->setDependentLocality('foo');
     $this->assertSame('foo', $this->address->getDependentLocality());
 }