paintCaseStart() public method

Paints the start of a test case.
public paintCaseStart ( string $test_name )
$test_name string Name of test that is starting.
 function paintCaseStart($test_name)
 {
     $this->captureStart();
     $this->logger->paintCaseStart($test_name);
     $this->captureStop();
 }
示例#2
0
 function paintMethodStart($method)
 {
     parent::paintGroupStart($this->_group, $this->_size);
     parent::paintCaseStart($this->_case);
     parent::paintMethodStart($method);
 }