public void convert_decimal()
        {
            /* Given */
            decimal value     = 123.123m;
            Type    floatType = typeof(decimal);


            /* When */
            var actual = ObjectExtensions.ConvertValue(value, floatType);

            /* Then */
            actual.ShouldBe(value);
        }
        public void convert_single()
        {
            /* Given */
            float value     = 123.123f;
            Type  floatType = typeof(float);


            /* When */
            var actual = ObjectExtensions.ConvertValue(value, floatType);

            /* Then */
            actual.ShouldBe(value);
        }
        public void convert_double()
        {
            /* Given */
            double value     = 123.123d;
            Type   floatType = typeof(double);


            /* When */
            var actual = ObjectExtensions.ConvertValue(value, floatType);

            /* Then */
            actual.ShouldBe(value);
        }