Added comments

This commit is contained in:
Steve Kamerman 2013-05-15 23:50:21 -04:00
parent d3f61ab79e
commit ead7f9a5eb
2 changed files with 8 additions and 3 deletions

View file

@ -7,11 +7,15 @@ class PhpUnit implements \PHPCI\Plugin
protected $directory; protected $directory;
protected $args; protected $args;
protected $phpci; protected $phpci;
/**
* @var string $runFrom When running PHPUnit with an XML config, the command is run from this directory
*/
protected $runFrom; protected $runFrom;
/** /**
* @var string $xmlConfigFile The path of an xml config for PHPUnit * @var string $xmlConfigFile The path of an xml config for PHPUnit
*/ */
protected $xmlConfigFile; protected $xmlConfigFile;
public function __construct(\PHPCI\Builder $phpci, array $options = array()) public function __construct(\PHPCI\Builder $phpci, array $options = array())

View file

@ -87,6 +87,7 @@ Similar to Travis CI, to support PHPCI in your project, you simply need to add a
- "PHPUnit-ubuntu-fix.xml" - "PHPUnit-ubuntu-fix.xml"
directory: directory:
- "tests/" - "tests/"
run_from: "phpunit/"
php_mess_detector: php_mess_detector:
allow_failures: true allow_failures: true
php_code_sniffer: php_code_sniffer: