/**
  * @return void
  */
 public function testExecute()
 {
     $titleMock = $this->getMockBuilder('Magento\\Framework\\View\\Page\\Title')->disableOriginalConstructor()->getMock();
     $titleMock->expects($this->once())->method('prepend')->with(new Phrase('New Accounts Report'));
     $this->viewMock->expects($this->any())->method('getPage')->willReturn(new DataObject(['config' => new DataObject(['title' => $titleMock])]));
     $this->menuBlockMock->expects($this->once())->method('setActive')->with('Magento_Reports::report_customers_accounts');
     $this->breadcrumbsBlockMock->expects($this->at(0))->method('addLink')->with(new Phrase('Reports'), new Phrase('Reports'));
     $this->breadcrumbsBlockMock->expects($this->at(1))->method('addLink')->with(new Phrase('Customers'), new Phrase('Customers'));
     $this->breadcrumbsBlockMock->expects($this->at(2))->method('addLink')->with(new Phrase('New Accounts'), new Phrase('New Accounts'));
     $this->accounts->execute();
 }