Esempio n. 1
0
 public static void Check(this CellProcessor processor, TypedValue actualValue, Tree <Cell> expectedCell)
 {
     processor.Operate <CheckOperator>(
         CellOperationValue.Make(actualValue),
         expectedCell);
 }
Esempio n. 2
0
 public static void Check(this CellProcessor processor, object systemUnderTest, Tree <Cell> memberName, Tree <Cell> parameters, Tree <Cell> expectedCell)
 {
     processor.Operate <CheckOperator>(
         CellOperationValue.Make(systemUnderTest, memberName, parameters, false),
         expectedCell);
 }