Esempio n. 1
0
        public void NotEquals()
        {
            StateRep other = new SubStateRep(StateName, "SuperStateNameIsDifferent", null);

            Assert.IsFalse(other.Equals(this.stateRep));
        }
Esempio n. 2
0
        public void SuperStateNullErrors()
        {
            StateRep rep = new SubStateRep("SubState", null, null);

            Assert.IsNull(rep.Build(this.builder));
        }
Esempio n. 3
0
        public void Equality()
        {
            StateRep other = new SubStateRep(StateName, SuperStateName, null);

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