5 writes to Name
Microsoft.AspNetCore.Mvc.Core.Test (5)
Controllers\ControllerBinderDelegateProviderTest.cs (5)
927
new Person {
Name
= "Fred" },
928
new Person {
Name
= "Ginger" }
1002
{ nameof(TestController.NonCollectionProperty), new Person {
Name
= "Fred" } },
1058
Assert.Equal(new Person {
Name
= "Ginger" }, controller.NonCollectionProperty); // Skipped
1371
public Person NonCollectionProperty { get; } = new Person {
Name
= "Ginger" };
2 references to Name
Microsoft.AspNetCore.Mvc.Core.Test (2)
Controllers\ControllerBinderDelegateProviderTest.cs (2)
1394
return other != null && string.Equals(
Name
, other.
Name
, StringComparison.Ordinal);