Esempio n. 1
0
 public function testSetGetCity()
 {
     $location = new Location();
     $location->setCityName('London');
     $this->assertSame('London', $location->getCityName());
 }