public function testGetSetElectoralWardName()
 {
     $expected = uniqid('Ward ');
     $this->assertEmpty($this->instance->getElectoralWardName());
     $this->assertInstanceOf(ElectoralWard::class, $this->instance->setElectoralWardName($expected));
     $this->assertEquals($expected, $this->instance->getElectoralWardName());
 }