Пример #1
0
        public void PostThingWithPropertyUsingCustomJsonConverter_ReturnsSuccessfullyDeserializedResource()
        {
            var form = new ColorfulThingForm()
            {
                Color = "#aaffdd"
            };
            var resource = Client.ColorfulThings.Post(form);

            Assert.That(resource.Color, Is.EqualTo(form.Color));
        }
Пример #2
0
 public void PostThingWithPropertyUsingCustomJsonConverter_ReturnsSuccessfullyDeserializedResource()
 {
     var form = new ColorfulThingForm() { Color = "#aaffdd" };
     var resource = Client.ColorfulThings.Post(form);
     Assert.That(resource.Color, Is.EqualTo(form.Color));
 }