Esempio n. 1
0
        public void IConvertibleTest()
        {
            Type         type   = typeof(string);
            IConvertible target = new TypeNameInfo(type);
            object       actual = target.ToType(type, null);

            Assert.IsNotNull(actual);
            Assert.IsInstanceOfType(actual, type);
            Assert.AreEqual(type.FullName, (string)actual);
            Assert.Inconclusive("TypeNameInfoUnitTest.IConvertibleTest not implemented.");
        }