示例#1
0
 /**
  * Creates feature directory.
  *
  * @param string $path
  */
 private function createFeatureDirectory($path)
 {
     mkdir($path, 0777, true);
     if ($this->logger) {
         $this->logger->directoryCreated($path, 'place your *.feature files here');
     }
 }
 /**
  * Creates context directory in the filesystem.
  *
  * @param string $path
  */
 private function createContextDirectory($path)
 {
     mkdir($path, 0777, true);
     if ($this->logger) {
         $this->logger->directoryCreated($path, 'place your context classes here');
     }
 }