3 writes to Quantity
Microsoft.Extensions.Validation.Tests (3)
ValidatableTypeInfoTests.cs (3)
251
new OrderItem { ProductName = "Valid Product",
Quantity
= 5 },
252
new OrderItem { /* Missing ProductName (required) */
Quantity
= 0 /* Invalid quantity */ },
253
new OrderItem { ProductName = "Another Product",
Quantity
= 200 /* Invalid quantity */ }