We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da00785 commit eee8998Copy full SHA for eee8998
1 file changed
tests/PolylineAlgorithm.Tests/CoordinateTest.cs
@@ -26,10 +26,16 @@ public class CoordinateTest {
26
/// Provides test data for the <see cref="Constructor_Invalid_Parameters_Ok"/> method.
27
/// </summary>
28
public static IEnumerable<object[]> Constructor_Invalid_Parameters => [
29
- [double.MaxValue, double.MaxValue],
30
- [double.MinValue, double.MinValue],
31
- [double.MaxValue, double.MinValue],
32
- [double.MinValue, double.MaxValue],
+ [double.MinValue, 0],
+ [double.MaxValue, 0],
+ [double.NaN, 0],
+ [double.PositiveInfinity, 0],
33
+ [double.NegativeInfinity, 0],
34
+ [0, double.MinValue],
35
+ [0, double.MaxValue],
36
+ [0, double.NaN],
37
+ [0, double.PositiveInfinity],
38
+ [0, double.NegativeInfinity]
39
];
40
41
/// <summary>
0 commit comments