IsSatisfiedByContext() public method

public IsSatisfiedByContext ( Context context ) : bool
context Context
return bool
Ejemplo n.º 1
0
 public void IsSatisfiedByStringInContext()
 {
     Context context = new Context();
     context.SetValue("p", "123");
     PropertyIsFact fact = new PropertyIsFact("p", "Length", 3);
     fact.IsSatisfiedByContext(context);
 }