private Feature GetFeatureElement(Parser.Feature feature)
 {
     return(this.resultsDocument.FirstOrDefault(x => x.name == feature.Name));
 }
        public TestResult GetFeatureResult(Parser.Feature feature)
        {
            var cucumberFeature = this.GetFeatureElement(feature);

            return(this.GetResultFromFeature(cucumberFeature));
        }