public function testFullName()
 {
     $expected = 'Jane Doe';
     $this->assertNull($this->user->getFullName());
     $this->assertSame($this->user, $this->user->setFullName($expected));
     $this->assertEquals($expected, $this->user->getFullName());
 }