Skip to content

Commit

Permalink
Added test for slight corner case of fraction digits
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco De Salvo committed May 27, 2024
1 parent af6fd7d commit 03f4837
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions RDFSharp.Test/Model/Facets/RDFFractionDigitsFacetTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ public void ShouldValidateFractionDigitsFacet()
Assert.IsFalse(facet.Validate(string.Empty));
Assert.IsFalse(facet.Validate("2.000"));
Assert.IsFalse(facet.Validate("2.5773"));
Assert.IsFalse(facet.Validate("2.57.73"));
Assert.IsFalse(facet.Validate("-2.009"));
Assert.IsFalse(facet.Validate("abcdefgh"));

Expand Down

0 comments on commit 03f4837

Please sign in to comment.