TextReporter::__construct PHP Method

__construct() public method

Does nothing yet. The first output will be sent on the first test start.
public __construct ( )
    public function __construct()
    {
        parent::__construct();
    }

Usage Example

 function __construct($AC)
 {
     parent::__construct();
     $this->verbose = $AC['verbose'];
 }
All Usage Examples Of TextReporter::__construct