EclipseReporter::__construct PHP Метод

__construct() публичный Метод

Reporter to be run inside of Eclipse interface.
public __construct ( object &$listener, boolean $cc = false )
$listener object Eclipse listener (?).
$cc boolean Whether to include test coverage.
    public function __construct(&$listener, $cc = false)
    {
        $this->listener = $listener;
        $this->SimpleScorer();
        $this->case = '';
        $this->group = '';
        $this->method = '';
        $this->cc = $cc;
        $this->error = false;
        $this->fail = false;
    }