8 references to CollectionProperty
Microsoft.AspNetCore.Mvc.Core.Test (8)
Controllers\ControllerBinderDelegateProviderTest.cs (8)
649Assert.Equal(new List<string> { "goodbye" }, controller.CollectionProperty);
661Name = nameof(TestController.CollectionProperty),
688Assert.Equal(expected, controller.CollectionProperty);
917nameof(TestController.CollectionProperty),
919controller => ((TestController)controller).CollectionProperty,
993{ nameof(TestController.CollectionProperty), typeof(List<string>) },
1001{ nameof(TestController.CollectionProperty), new List<string> { "hello", "world" } },
1057Assert.Equal(new List<string> { "hello", "world" }, controller.CollectionProperty);