display() public method

Prints the menu and the breadcrumbs
public display ( ) : void
return void
Esempio n. 1
0
 /**
  * Table menu display test
  *
  * @return void
  */
 function testTableDisplay()
 {
     $menu = new Menu('server', 'pma_test', '');
     $this->expectOutputString($menu->getDisplay());
     $menu->display();
 }