/**
  * This method renders the report
  *
  * @return    string    The status report as HTML
  */
 public function getReport()
 {
     $content = tx_additionalreports_main::displayAjax();
     return $content;
 }
Ejemplo n.º 2
0
 /**
  * @test
  */
 public function displayAjax()
 {
     $str = tx_additionalreports_main::displayAjax();
     $this->assertTrue(!empty($str));
 }