paintMethodStart() public method

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