コード例 #1
0
        public void GetHashCode_WithEqualObject_EqualHashes(string code)
        {
            var x = new BOPostalCode(code);
            var y = new BOPostalCode(code);

            Assert.IsTrue(x.GetHashCode() == y.GetHashCode());
        }