11 references to RangeAttribute
Microsoft.AspNetCore.Mvc.DataAnnotations.Test (3)
RangeAttributeAdapterTest.cs (3)
22
var attribute = new
RangeAttribute
(typeof(decimal), "0", "100");
52
var attribute = new
RangeAttribute
(typeof(decimal), "0", "100");
88
var attribute = new
RangeAttribute
(typeof(decimal), "0", "100");
Microsoft.AspNetCore.OpenApi.Tests (7)
Services\OpenApiSchemaService\OpenApiSchemaService.ParameterSchemas.cs (7)
343
[([
Range
(typeof(DateTime), "2024-02-01", "2024-02-031")] DateTime id) => {}, (OpenApiSchema schema) => { Assert.Null(schema.Minimum); Assert.Null(schema.Maximum); }],
376
[([
Range
(typeof(double), "0", "1.79769313486232E+308")] double id) => {}, (OpenApiSchema schema) => { Assert.Equal(0, schema.Minimum); Assert.Null(schema.Maximum); }],
377
[([
Range
(typeof(long), "-9223372036854775808", "9223372036854775807")] long id) => {}, (OpenApiSchema schema) => { Assert.Equal(long.MinValue, schema.Minimum); Assert.Equal(long.MaxValue, schema.Maximum); }],
378
[([
Range
(typeof(DateTime), "2024-02-01", "2024-02-031")] DateTime id) => {}, (OpenApiSchema schema) => { Assert.Null(schema.Minimum); Assert.Null(schema.Maximum); }],
402
[([
Range
(typeof(DateTime), "2024-02-01", "2024-02-031")] DateTime id) => {}, (OpenApiSchema schema) => { Assert.Null(schema.Minimum); Assert.Null(schema.Maximum); }],
403
[([
Range
(typeof(decimal), "1,99", "3,99")] decimal id) => {}, (OpenApiSchema schema) => { Assert.Equal(1.99m, schema.Minimum); Assert.Equal(3.99m, schema.Maximum); }],
404
[([
Range
(typeof(decimal), "1,99", "3,99", ParseLimitsInInvariantCulture = true)] decimal id) => {}, (OpenApiSchema schema) => { Assert.Equal(199, schema.Minimum); Assert.Equal(399, schema.Maximum); }],
System.ComponentModel.Annotations (1)
System\ComponentModel\DataAnnotations\RangeAttribute.cs (1)
99
/// by the <c>type</c> parameter of the <see cref="
RangeAttribute
(Type, string, string)"/> constructor are carried