18 lines
325 B
PHP
18 lines
325 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
class MediaWikiTestResult extends PHPUnit_Framework_TestResult {
|
||
|
|
private $cliArgs;
|
||
|
|
|
||
|
|
public function __construct( array $cliArgs ) {
|
||
|
|
$this->cliArgs = $cliArgs;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Get the command-line arguments from phpunit.php
|
||
|
|
* @return array
|
||
|
|
*/
|
||
|
|
public function getMediaWikiCliArgs() {
|
||
|
|
return $this->cliArgs;
|
||
|
|
}
|
||
|
|
}
|