public function NativePhpunitTask::setJunitlogfile

File

drupal/core/vendor/doctrine/common/tests/NativePhpunitTask.php, line 46

Class

NativePhpunitTask
A more flexible and powerful PHPUnit Task than the native Phing one.

Code

public function setJunitlogfile($junitlogfile) {
  if (strlen($junitlogfile) == 0) {
    $junitlogfile = NULL;
  }
  $this->junitlogfile = $junitlogfile;
}