10 references to Manufacturer
Microsoft.AspNetCore.Mvc.IntegrationTests (10)
HeaderModelBinderIntegrationTest.cs (10)
345Assert.NotNull(product.Manufacturer);
346Assert.Equal("someValue", product.Manufacturer.NoCommaString);
347Assert.Equal("one, two, three", product.Manufacturer.OneCommaSeparatedStringProperty);
348Assert.Equal(10, product.Manufacturer.IntProperty);
349Assert.Equal(300, product.Manufacturer.NullableIntProperty);
350Assert.Null(product.Manufacturer.NullableLongProperty);
351Assert.Equal(new[] { "first", "second" }, product.Manufacturer.ArrayOfString);
352Assert.Equal(new double[] { 10.51, 45.44 }, product.Manufacturer.EnumerableOfDoubleProperty);
353Assert.Equal(new CarType[] { CarType.Sedan, CarType.Coupe }, product.Manufacturer.ListOfEnum);
354var orderWithTypeConverter = Assert.Single(product.Manufacturer.ListOfOrderWithTypeConverterProperty);