SimpleReporter::paintFooter PHP 메소드

paintFooter() 공개 메소드

Paints the test document footer.
public paintFooter ( string $test_name )
$test_name string The top level test.
    public function paintFooter($test_name)
    {
    }

Usage Example

 /**
  * @param string $testName
  */
 public function paintFooter($testName)
 {
     parent::paintFooter($testName);
     $this->xmlWriter->endTestSuites();
 }
All Usage Examples Of SimpleReporter::paintFooter