Exemplo n.º 1
0
        public void Clone_AnySubstitution_ClonedSubstitution(string s)
        {
            var sub   = new Substitution(s);
            var clone = sub.Clone();

            Assert.That(!ReferenceEquals(sub, clone));
            Assert.That(sub.Equals(clone));
        }