CanConvertFrom() public method

Always returns false.
public CanConvertFrom ( object sourceValue, Type destinationType ) : bool
sourceValue object The value to convert from.
destinationType System.Type The type to convert to.
return bool
        public void ConvertIntegerToAttributeColumn()
        {
            var converter = new AttributeColumnTypeConverter();

            Assert.IsFalse(converter.CanConvertFrom(0, typeof(AttributeColumn)));

            converter.ConvertFrom(0, typeof(AttributeColumn), null, false);
        }