public IHttpActionResult TestModel3(TestModel3 model) { return OutputErrors(); }
public void ReadValue_reads_lowercase_id_property() { var testModel = new TestModel3 { id = "hello" }; var id = IdReader.ReadValue(testModel); id.Should().Be(testModel.id); }