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

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

            Assert.IsNull(rep.Build(this.builder));
        }
Пример #3
0
        public void Equality()
        {
            StateRep other = new SubStateRep(StateName, SuperStateName, null);

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