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