__construct() public method

The first output will be sent on the first test start. For use by a web browser.
public __construct ( $charset = 'utf-8' )
Esempio n. 1
0
 /**
  * Constructor.
  *
  * @param bool $showpasses Whether this reporter should output anything for passes.
  */
 function __construct($showpasses)
 {
     parent::__construct('UTF-8');
     $this->showpasses = $showpasses;
     $this->strrunonlyfolder = $this->get_string('runonlyfolder');
     $this->strrunonlyfile = $this->get_string('runonlyfile');
     $this->strseparator = get_separator();
 }
 function __construct($coverage)
 {
     parent::__construct();
     $this->coverage = $coverage;
 }
 function __construct($charset = NULL)
 {
     if (is_null($charset)) {
         global $io_charset;
         $charset = $io_charset;
     }
     parent::__construct($charset);
 }
Esempio n. 4
0
 public function __construct()
 {
     parent::__construct();
     $this->HtmlReporter();
 }
Esempio n. 5
0
 /**
  * Constructor sets character set.
  *
  * @access public
  * @param  string $character_set
  * @return void
  */
 function __construct($character_set = 'UTF-8')
 {
     parent::__construct();
     $this->character_set = $character_set;
 }
 public function __construct($character_set = 'ISO-8859-1')
 {
     parent::__construct($character_set);
 }