public void JsonSerialise_ObjectAsCompressed_SmallerString()
        {
            var odoc = new XmlDoc { SV = "value" };

             string fullString = odoc.ToJsonString();
             string compString = odoc.ToCompressedJsonString();

             Assert.True(fullString.Length > compString.Length);
        }