예제 #1
0
 /**
  * @test
  */
 public function setCitySetsCity()
 {
     $city = 'city';
     $this->address->setCity($city);
     $this->assertSame($city, $this->address->getCity());
 }