Tests.SpecFlowFeatureReportTests.should_create_a_structure_for_1_specflow_feature_in_1_directory C# (CSharp) Method

should_create_a_structure_for_1_specflow_feature_in_1_directory() private method

        public void should_create_a_structure_for_1_specflow_feature_in_1_directory()
        {
            // Arrange 
            var path =  TestConstants.ROOT_TESTDATA +@"00BasicGherkin\";
            var specFlowReportGenerator = new SpecFlowReportGenerator(path, "en-US");
         
            // Act 
            var features = specFlowReportGenerator.GetSpecFlowFeatures();

            // Assert
            features.Should().Not.Be.Empty();
            features.Count.Should().Equal(1);
            features[0].Title.Should().Equal("Showing basic gherkin syntax");
        }