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

SpecFlowReportGenerator() public method

public SpecFlowReportGenerator ( string rootPath, string featureLanguage ) : System.Collections.Generic
rootPath string
featureLanguage string
return System.Collections.Generic
        public SpecFlowReportGenerator(string rootPath, string featureLanguage)
        {
            this.rootPath = rootPath;
            currentCultureInfo = CultureInfo.CreateSpecificCulture(featureLanguage);
            specFlowParser = new SpecFlowLangParser(currentCultureInfo); 
        }