paintCaseEnd() public method

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