setTestDirectory() публичный Метод

Set the test directory of the project being mutated
public setTestDirectory ( string $dir )
$dir string
Пример #1
0
 /**
  * Set a tests directory for the provided runner
  *
  * @param \Mutagenesis\Runner\RunnerAbstract $runner
  */
 protected static function setTestDirectory(\Mutagenesis\Runner\RunnerAbstract $runner)
 {
     if (isset(self::$_options['tests'])) {
         $runner->setTestDirectory(self::$_options['tests']);
     } else {
         $runner->setTestDirectory(getcwd());
     }
 }