Example #1
0
        public void Tets()
        {
            var orig = CreateSST();
            var anon = _sut.Anonymize(orig);

            // the test is obviously meaningless, until something very serious is broken
            // the main goal here is to ensure that Equals/HashCode do not crash
            Assert.AreNotEqual(orig, anon);
            Assert.AreNotEqual(orig.GetHashCode(), anon.GetHashCode());
        }
Example #2
0
 public void AnonymizeNullValues()
 {
     _sut.Anonymize(new SST());
 }