SimpleReporter::paintFooter PHP Method

paintFooter() public method

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