public function testGetSetCountyName()
 {
     $expected = uniqid('CountyName');
     $this->assertEmpty($this->instance->getCountyName());
     $this->assertInstanceOf(County::class, $this->instance->setCountyName($expected));
     $this->assertEquals($expected, $this->instance->getCountyName());
 }