public function testAvatarUrl()
 {
     $url = 'http://www.example.com/image.jpg';
     $profile = new Profile();
     $profile->setAvatarUrl($url);
     $this->assertEquals($url, $profile->getAvatarUrl());
 }