Exemplo n.º 1
0
 /**
  * @since Method available since Release 3.4.0
  */
 protected function setUseOutputBufferingFromAnnotation()
 {
     try {
         $useOutputBuffering = PHPUnit_Util_Test::getOutputBufferingSettings(get_class($this), $this->name);
         if ($useOutputBuffering !== NULL) {
             $this->setUseOutputBuffering($useOutputBuffering);
         }
     } catch (ReflectionException $e) {
     }
 }