Tests.NUnitReportParserTests.should_ParsedOK_to_false_for_non_exsisting_file C# (CSharp) Method

should_ParsedOK_to_false_for_non_exsisting_file() private method

private should_ParsedOK_to_false_for_non_exsisting_file ( ) : void
return void
        public void should_ParsedOK_to_false_for_non_exsisting_file()
        {
            // Act
            var parser = new NUnitReportParser(RESULTFILE + "DOSENTEXSIST");

            // Assert
            parser.ParsedOK.Should().Equal(false);
        }