public bool Equals(GreaterOrEqualToZeroRule other)
 {
     return Token.Equals(other.Token);
 }
Example #2
0
 public bool Equals(GreaterOrEqualToZeroRule other)
 {
     return(Token.Equals(other.Token));
 }
 public void BeforeEach()
 {
     theRule = new GreaterOrEqualToZeroRule();
     theModel = new SimpleModel();
 }