StoryTeller.Grammars.Sets.SetVerificationResult.Tabulate C# (CSharp) Méthode

Tabulate() public méthode

public Tabulate ( Counts counts ) : void
counts Counts
Résultat void
        public void Tabulate(Counts counts)
        {
            counts.Rights += _matches.Count;
            counts.Wrongs += _missing.Count;
            counts.Wrongs += _extras.Count;
            counts.Wrongs += _wrongOrders.Count;
            
        }