Tests.SpecFlowFeatureReportTests.should_create_a_structure_for_1_specflow_feature_in_deep_directory_structure C# (CSharp) Method

should_create_a_structure_for_1_specflow_feature_in_deep_directory_structure() private method

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

            // Assert
            features.Count.Should().Equal(1);
            features[0].Title.Should().Equal("The test runner is not (very) important");
            features[0].SourceFile.Contains(@"Important\01TestRunner\TestRunnerIsNotImportant.feature");
        }