paintGroupStart() публичный Метод

Paints the start of a group test.
public paintGroupStart ( string $test_name, integer $size )
$test_name string Name of test that is starting.
$size integer Number of test cases starting.
 function paintGroupStart($test_name, $size)
 {
     parent::paintGroupStart($test_name, $size);
     $this->captureStart();
     $this->logger->paintGroupStart($test_name, $size);
     $this->captureStop();
 }
Пример #2
0
 function paintMethodStart($method)
 {
     parent::paintGroupStart($this->_group, $this->_size);
     parent::paintCaseStart($this->_case);
     parent::paintMethodStart($method);
 }