Пример #1
0
        public void NotEquals()
        {
            StateRep other = new SubStateRep(StateName, "SuperStateNameIsDifferent", null);

            Assert.IsFalse(other.Equals(this.stateRep));
        }
Пример #2
0
        public void Equality()
        {
            StateRep other = new SubStateRep(StateName, SuperStateName, null);

            Assert.IsTrue(other.Equals(this.stateRep));
        }