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

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