public function testCountry()
 {
     $expected = 'Italy';
     $this->assertNull($this->user->getCountry());
     $this->assertSame($this->user, $this->user->setCountry($expected));
     $this->assertEquals($expected, $this->user->getCountry());
 }