public void NotEquals() { StateRep other = new SubStateRep(StateName, "SuperStateNameIsDifferent", null); Assert.IsFalse(other.Equals(this.stateRep)); }
public void SuperStateNullErrors() { StateRep rep = new SubStateRep("SubState", null, null); Assert.IsNull(rep.Build(this.builder)); }
public void Equality() { StateRep other = new SubStateRep(StateName, SuperStateName, null); Assert.IsTrue(other.Equals(this.stateRep)); }