SpecFlowDocCreator.Services.SpecFlowReportGenerator.ParseSpecFlowFeature C# (CSharp) Method

ParseSpecFlowFeature() private method

private ParseSpecFlowFeature ( string featureFile ) : TechTalk.SpecFlow.Parser.SyntaxElements.Feature
featureFile string
return TechTalk.SpecFlow.Parser.SyntaxElements.Feature
        private Feature ParseSpecFlowFeature(string featureFile)
        {
            Feature feature;
            using (var reader = new StreamReader(featureFile))
            {
                feature = specFlowParser.Parse(reader, featureFile);
            }

            return feature;
        }
    }