We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0918295 commit 33614bbCopy full SHA for 33614bb
README.md
@@ -54,6 +54,10 @@ var modelState = new ModelStateDictionary();
54
55
// Act
56
var modelBindingResult = await binder.BindModelAsync(new CompositeValueProvider(valueProviders), modelState, parameter);
57
+
58
+// Assert
59
+Assert.True(modelBindingResult.IsModelSet);
60
+Assert.IsType<Person>(modelBindingResult.Model);
61
```
62
63
### Prerequisites
0 commit comments