public void NotEquals() { StateRep other = new NormalStateRep("OtherStateName", null); Assert.IsFalse(other.Equals(this.stateRep)); }
public void Equality() { StateRep other = new NormalStateRep(StateName, null); Assert.IsTrue(other.Equals(this.stateRep)); }