diff --git a/PHPCI/Plugin/PhpUnit.php b/PHPCI/Plugin/PhpUnit.php index 34817f11..682521e4 100644 --- a/PHPCI/Plugin/PhpUnit.php +++ b/PHPCI/Plugin/PhpUnit.php @@ -8,19 +8,30 @@ class PhpUnit implements \PHPCI\Plugin protected $args; protected $phpci; +/** + * @var string $xmlConfigFile The path of an xml config for PHPUnit + */ + protected $xmlConfigFile; + public function __construct(\PHPCI\Builder $phpci, array $options = array()) { $this->phpci = $phpci; $this->directory = isset($options['directory']) ? $options['directory'] : $phpci->buildPath; + $this->xmlConfigFile = isset($options['config']) ? $options['config'] : null; $this->args = isset($options['args']) ? $options['args'] : ''; } public function execute() { - $curdir = getcwd(); - chdir($this->phpci->buildPath); - $success = $this->phpci->executeCommand(PHPCI_BIN_DIR . 'phpunit ' . $this->args . ' ' . $this->phpci->buildPath . $this->directory); - chdir($curdir); + if ($this->xmlConfigFile === null) { + $curdir = getcwd(); + chdir($this->phpci->buildPath); + $success = $this->phpci->executeCommand(PHPCI_BIN_DIR . 'phpunit ' . $this->args . ' ' . $this->phpci->buildPath . $this->directory); + chdir($curdir); + } + else { + $success = $this->phpci->executeCommand(PHPCI_BIN_DIR . 'phpunit ' . $this->args . ' -c ' . $this->phpci->buildPath . $this->xmlConfigFile ); + } return $success; }