SimpleReporter::__construct PHP Method

__construct() public method

Starts the display with no results in.
public __construct ( )
    public function __construct()
    {
        parent::__construct();
        $this->test_stack = array();
        $this->size = null;
        $this->progress = 0;
    }

Usage Example

Example #1
0
 function __construct()
 {
     parent::__construct();
     $this->doc = new DOMDocument();
     $this->doc->loadXML('<testsuite/>');
     $this->root = $this->doc->documentElement;
 }
All Usage Examples Of SimpleReporter::__construct