protected override void OnSetup()
 {
     var x = CheckerFactory;
     var checker = new SimpleChecker() as ICheckerCompare;
     pc = checker.Properties.First();
     pce = new PropertyCheckExpression(pc);
 }
示例#2
0
 /// <summary>
 /// Create a new instance of the <see cref="PropertyCheckExpression" /> class.
 /// </summary>
 /// <param name="propertyCheck"></param>
 public PropertyCheckExpression(PropertyCheck propertyCheck)
 {
     this.propertyCheck = propertyCheck;
 }