fixed bug where console coverage was showing up every time

This commit is contained in:
tmont 2009-06-28 19:10:19 +00:00
parent 175526841c
commit d6faf4533e

View File

@ -28,9 +28,7 @@
* @uses getOption()
*/
protected function preRun() {
parent::preRun();
if ($this->getOption('coverage-html') !== null || $this->getOption('coverage-console') !== null/* || $this->getOption('coverage-xml')*/) {
if ($this->getOption('coverage-html') || $this->getOption('coverage-console')/* || $this->getOption('coverage-xml')*/) {
xdebug_start_code_coverage(XDEBUG_CC_UNUSED | XDEBUG_CC_DEAD_CODE);
}
@ -53,7 +51,7 @@
protected function postRun() {
$html = $this->getOption('coverage-html');
$console = $this->getOption('coverage-console');
if ($html !== null || $console !== null) {
if ($html || $console) {
$coverage = xdebug_get_code_coverage();
xdebug_stop_code_coverage();
if ($console !== null) {