Esempio n. 1
0
 public function testSetGetContinent()
 {
     $location = new Location();
     $location->setContinent('EU', 'Europe');
     $this->assertSame('EU', $location->getContinentCode());
     $this->assertSame('Europe', $location->getContinentName());
 }