Lines Matching refs:config

30 				$this->config = array_shift($argv);
49 public function __construct($config, $cmd) { argument
50 $this->options = $config;
72 if (isset($config[$key])) {
73 if (is_array($config[$key])) {
76 $this->options[$key] = array($config[$key], $value);
138 public function __construct(TestsConfiguration $config) { argument
139 $this->config = $config;
141 if ($this->config->hasFlag('help') ||
142 $this->config->hasFlag('h')) {
154 $where = ($in != null) ? array($in) : $this->config['path'];
181 '-', $this->config['width'] - strlen($path)),
209 ' ', $this->config['width'] - strlen($stats)),
212 printf("%s%s", str_repeat('-', $this->config['width']+3), PHP_EOL);
230 ' ', $this->config['width'] - strlen($stats)),
239 printf('usage: php %s [flags] [options]%s', $this->config['exec'], PHP_EOL);
251 $this->config['exec'], PHP_EOL);
270 $tests[] = new Test($this->config, $test);
285 "%-{$this->config['lwidth']}s %-{$this->config['rwidth']}s [%s]%s",
294 protected $config; variable in phpdbg\\testing\\Tests
360 public function __construct(TestsConfiguration $config, $file) { argument
386 $this->config, "unknown type of expectation (%s)", $chunks[1]);
423 $this->config = $config;
439 $this->config['options'],
444 '%s %s', $options, $this->config['options']
448 $result = `{$this->config['phpdbg']} {$options}`;
500 if (!$this->config->hasFlag('nodiff')) {
501 if ($this->config->hasFlag('diff2stdout')) {
537 if (!in_array('nolog', $this->config['flags'])) {
568 $config = new TestsConfiguration(array( variable
580 $tests = new Tests($config);