public function getTitleService()
 {
     $this->titleService = $this->getMock('Oro\\Bundle\\NavigationBundle\\Provider\\TitleServiceInterface');
     $this->titleService->expects($this->once())->method('getSerialized')->will($this->returnValue($this->serializedTitle));
     return $this->titleService;
 }