paintCaseEnd() public method

Paints the end of a test case.
public paintCaseEnd ( string $test_name )
$test_name string Name of test that is ending.
コード例 #1
0
 function paintCaseEnd($test_name)
 {
     $this->captureStart();
     $this->logger->paintCaseEnd($test_name);
     $this->captureStop();
 }
コード例 #2
0
ファイル: eclipse.php プロジェクト: JackCanada/moodle-hacks
 function paintMethodEnd($method)
 {
     parent::paintMethodEnd($method);
     parent::paintCaseEnd($this->_case);
     parent::paintGroupEnd($this->_group);
 }