Tests.NUnitReportParserTests.should_return_a_test_case_result C# (CSharp) Method

should_return_a_test_case_result() private method

private should_return_a_test_case_result ( ) : void
return void
        public void should_return_a_test_case_result()
        {
            // Arrange
            var testCaseName = @"Using And and But";

            // Act
            var testCaseResult = _nunitReportParser.GetTestCaseResult(testCaseName);

            // Assert
            testCaseResult.Name.ToLower().Should().EndWith("usingandandbut");
            testCaseResult.Success.Should().Equal(true);
        }