コード例 #1
0
ファイル: Module.php プロジェクト: jacobsenj/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('showMemoryAndTime')) {
         $this->testListener->enableShowMemoryAndTime();
     }
 }