/**
  * @param BehatEvent\AfterFeatureTested $event
  */
 public function onAfterFeatureTested(BehatEvent\AfterFeatureTested $event)
 {
     $this->currentSuite->addFeature($this->currentFeature);
     if ($this->currentFeature->allPassed()) {
         $this->passedFeatures[] = $this->currentFeature;
     } else {
         $this->failedFeatures[] = $this->currentFeature;
     }
 }