Skip to content

Commit a214f0c

Browse files
committed
Float integration tests for custom filters added
1 parent 66aeea4 commit a214f0c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Tests/integrationtests/Tests.SeleniumTests/Tests/CustomFiltersIntegrationTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ public void EqualShouldWorkProperly(Expression<Func<AllTypesModel, IComparable>>
8585
new object[]{ GetExpression(x => x.DecimalProperty), new Func<string, IComparable>(x => decimal.Parse(x)), RangeOperationTypesEnum.lt, null },
8686
new object[]{ GetExpression(x => x.DecimalNullable), new Func<string, IComparable>(x => decimal.Parse(x)), RangeOperationTypesEnum.lt, null },
8787
new object[]{ GetExpression(x => x.DoubleProperty), new Func<string, IComparable>(x => double.Parse(x)), RangeOperationTypesEnum.lt, null },
88+
new object[]{ GetExpression(x => x.Float), new Func<string, IComparable>(x => float.Parse(x)), RangeOperationTypesEnum.lt, null },
8889
#if USE_CHARTYPE
8990
new object[]{ GetExpression(x => x.CharProperty), new Func<string, IComparable>(x => char.Parse(x)), RangeOperationTypesEnum.lt, null },
9091
new object[]{ GetExpression(x => x.CharNullable), new Func<string, IComparable>(x => char.Parse(x)), RangeOperationTypesEnum.lt, null },

0 commit comments

Comments
 (0)