paintCaseStart() public méthode

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();
 }
Exemple #2
0
 function paintMethodStart($method)
 {
     parent::paintGroupStart($this->_group, $this->_size);
     parent::paintCaseStart($this->_case);
     parent::paintMethodStart($method);
 }