예제 #1
0
        public void ToQuotedString_FloatConverter_not_throw_Exception()
        {
            var floatConverter = new FloatConverter();

            floatConverter.ToQuotedString(typeof(decimal), 89.123456789);
            floatConverter.ToQuotedString(typeof(float), 89.123456789);
            floatConverter.ToQuotedString(typeof(double), 89.123456789);
        }