/**
  * Paints the start of a group test. Will also paint
  * the page header and footer if this is the
  * first test. Will stash the size if the first start.
  * @param string $test_name   Name of test that is starting.
  * @param integer $size       Number of test cases starting.
  */
 function paintGroupStart($test_name, $size)
 {
     $this->time = $this->getMicrotime();
     HtmlReporter::paintGroupStart($test_name, $size);
     if (extension_loaded('xdebug')) {
         xdebug_start_code_coverage(XDEBUG_CC_UNUSED | XDEBUG_CC_DEAD_CODE);
     }
 }
Beispiel #2
0
 function paintGroupStart($name, $size)
 {
     parent::paintGroupStart($name, $size);
     $this->current_html = "";
 }
Beispiel #3
0
 /**
  * Display the start of each test case
  *
  * @param string $test_case
  * @param int $size
  */
 function paintGroupStart($test_case, $size)
 {
     parent::paintGroupStart($test_case, $size);
     print "<br /><div class=\"group\"><b>Test Case:</b> {$test_case}</div>";
 }
Beispiel #4
0
 function paintGroupStart($test_name, $size)
 {
     parent::paintGroupStart($test_name, $size);
 }