Esempio n. 1
0
        public void GetHashCodeTest()
        {
            Type         type     = typeof(string);
            TypeNameInfo target   = new TypeNameInfo(type);
            int          expected = type.FullName.GetHashCode();
            int          actual   = target.GetHashCode();

            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("TypeNameInfoUnitTest.GetHashCodeTest not implemented.");
        }