getGrep() public method

Returns the pattern used to load tests
public getGrep ( ) : string
return string
Example #1
0
 /**
  * Fetch the loader used by the Peridot command. Defaults to
  * a glob based loader
  *
  * @return SuiteLoaderInterface
  */
 public function getLoader()
 {
     if (is_null($this->loader)) {
         return new SuiteLoader($this->configuration->getGrep());
     }
     return $this->loader;
 }