コード例 #1
0
 public void Tabulate(Counts counts)
 {
     counts.Increment(status);
     if (cells != null)
     {
         cells.Each(x => counts.Increment(x.Status));
     }
 }
コード例 #2
0
ファイル: StepResult.cs プロジェクト: storyteller/Storyteller
 public void Tabulate(Counts counts)
 {
     counts.Increment(status);
     if (cells != null)
     {
         cells.Each(x => counts.Increment(x.Status));
     }
 }
コード例 #3
0
 public void Tabulate(Counts counts)
 {
     counts.Increment(Status);
 }
コード例 #4
0
 public void Tabulate(Counts counts)
 {
     counts.Increment(status);
     cells?.Each(x => counts.Increment(x.Status));
 }
コード例 #5
0
 public void Tabulate(Counts counts)
 {
     counts.Increment(Status);
 }