AspUnitRunner.Core.ResultParser.ParseSummaryValues C# (CSharp) Méthode

ParseSummaryValues() private méthode

private ParseSummaryValues ( Match match ) : void
match System.Text.RegularExpressions.Match
Résultat void
        private void ParseSummaryValues(Match match)
        {
            _results.Tests = ParseMatchedInt(match, "tests");
            _results.Errors = ParseMatchedInt(match, "errors");
            _results.Failures = ParseMatchedInt(match, "failures");
        }