paintGroupEnd() public method

Paints the end of a group test.
public paintGroupEnd ( string $test_name )
$test_name string Name of test that is ending.
 function paintGroupEnd($test_name)
 {
     parent::paintGroupEnd($test_name);
     $this->captureStart();
     $this->logger->paintGroupEnd($test_name);
     $this->captureStop();
     if (count($this->_test_stack) == 0) {
         if ($this->out) {
             $this->out->write($this->xmlData);
             $this->out->close();
         }
     }
 }
示例#2
0
 function paintMethodEnd($method)
 {
     parent::paintMethodEnd($method);
     parent::paintCaseEnd($this->_case);
     parent::paintGroupEnd($this->_group);
 }