Tests.VmFactoryTests.CreateTestFeature C# (CSharp) Method

CreateTestFeature() private static method

private static CreateTestFeature ( string title ) : TechTalk.SpecFlow.Parser.SyntaxElements.Feature
title string
return TechTalk.SpecFlow.Parser.SyntaxElements.Feature
        private static Feature CreateTestFeature(string title)
        {
            return new Feature
                       {
                           Title = title,
                           Scenarios = CreateTestScenarios(3).ToArray()
                       };
        }
    }