public function testCity()
 {
     $expected = 'New York';
     $this->assertNull($this->user->getCity());
     $this->assertSame($this->user, $this->user->setCity($expected));
     $this->assertEquals($expected, $this->user->getCity());
 }