Пример #1
0
 /**
  * @covers ::isRegion
  * @covers ::isCity
  * @covers ::isCountry
  */
 public function testCity()
 {
     $location = new Location();
     $this->assertFalse($location->isRegion());
     $this->assertFalse($location->isCity());
     $this->assertFalse($location->isCountry());
 }