Construct Report Object

Parameters

  • array $config Options array for the test run. Valid options are: - 'group': The test group with items to be run. - 'filters': An array of filters that the test output should be run through.

Source

						public function __construct(array $config = array()) {
		$defaults = array(
			'title' => null,
			'group' => null,
			'filters' => array(),
			'format' => 'txt',
			'reporter' => 'console'
		);
		parent::__construct($config + $defaults);
	}