/**
  * @covers Navigation::setCurrentUrl
  */
 public function testSetCurrentUrl()
 {
     $navigation = new Navigation();
     $navigation->setCurrentUrl('http://site.com/test');
     $this->assertEquals('http://site.com/test', $navigation->getCurrentUrl());
 }