Beispiel #1
0
 public SetVerificationGrammar(string title, string leafName, ISetComparison comparison)
 {
     _title      = title;
     _leafName   = leafName;
     _comparison = comparison;
     _ordered    = false;
 }
 public SetVerificationGrammar(string title, string leafName, ISetComparison comparison)
 {
     _title = title;
     _leafName = leafName;
     _comparison = comparison;
     _ordered = false;
 }
 public VerificationSetPlan(Section section, ISetMatcher matcher, ISetComparison comparison,
                            IEnumerable <StepValues> expected, Cell[] cells)
 {
     _section    = section;
     _matcher    = matcher;
     _comparison = comparison;
     _expected   = expected;
     _cells      = cells;
 }
 public VerificationSetPlan(Section section, ISetMatcher matcher, ISetComparison comparison,
     IEnumerable<StepValues> expected, Cell[] cells)
 {
     _section = section;
     _matcher = matcher;
     _comparison = comparison;
     _expected = expected;
     _cells = cells;
 }
Beispiel #5
0
 public VerificationSetPlan(SetVerificationGrammar grammar, Section section, ISetMatcher matcher, ISetComparison comparison, IEnumerable <StepValues> expected, Cell[] cells, long maximumRuntimeInMilliseconds)
 {
     _grammar    = grammar;
     _section    = section;
     _matcher    = matcher;
     _comparison = comparison;
     _expected   = expected;
     _cells      = cells;
     _maximumRuntimeInMilliseconds = maximumRuntimeInMilliseconds;
 }