예제 #1
0
파일: Module.php 프로젝트: TrueType/phpunit
 /**
  * Configures the test listener as defined in the user settings.
  *
  * @return void
  */
 protected function configureTestListener()
 {
     if ($this->userSettingsService->getAsBoolean('testdox')) {
         $this->testListener->useHumanReadableTextFormat();
     }
     if ($this->userSettingsService->getAsBoolean('showTime')) {
         $this->testListener->enableShowTime();
     }
 }