3 instantiations of Person
Microsoft.AspNetCore.Http.Abstractions.Tests (3)
Validation\ValidatableParameterInfoTests.cs (3)
157var person = new Person(); // Name is null, so should fail validation 199new() { Name = "Valid" }, 200new() // Name is null, should fail
10 references to Person
Microsoft.AspNetCore.Http.Abstractions.Tests (10)
Validation\ValidatableParameterInfoTests.cs (10)
135typeof(Person), 138typeof(Person), 146parameterType: typeof(Person), 153{ typeof(Person), personTypeInfo } 157var person = new Person(); // Name is null, so should fail validation 175typeof(Person), 178typeof(Person), 186parameterType: typeof(IEnumerable<Person>), 193{ typeof(Person), personTypeInfo } 197var people = new List<Person>