public void ConvertTo_String()
        {
            var collection = new DoubleCollection()
            {
                1.0, 2.0, 3.0
            };

            Converter.ConvertTo(collection, typeof(string))
            .Should()
            .Be(collection.ToString());
        }