paintMethodStart() public method

Paints the start of a test method.
public paintMethodStart ( string $test_name )
$test_name string Name of test that is starting.
コード例 #1
0
 function paintMethodStart($test_name)
 {
     $this->captureStart();
     $this->logger->paintMethodStart($test_name);
     $this->captureStop();
 }
コード例 #2
0
ファイル: xml_chris.php プロジェクト: masroore/chrisreloaded
 function paintMethodStart($test_name)
 {
     $this->pre = microtime();
     parent::paintMethodStart($test_name);
 }
コード例 #3
0
 function paintMethodStart($test_name)
 {
     $this->methodStart = $this->t();
     parent::paintMethodStart($test_name);
 }
コード例 #4
0
ファイル: eclipse.php プロジェクト: JackCanada/moodle-hacks
 function paintMethodStart($method)
 {
     parent::paintGroupStart($this->_group, $this->_size);
     parent::paintCaseStart($this->_case);
     parent::paintMethodStart($method);
 }