Example #1
0
 /**
  * @covers Application\Entity\BusStop::getCountry
  */
 public function testGetCountry()
 {
     $value = 'NL';
     $this->assertNull($this->object->getCountry());
     $this->assertEquals($value, $this->object->setCountry($value)->getCountry());
 }