We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba0929d commit c295f6fCopy full SHA for c295f6f
src/TestProject/IPNetworkTest/IPNetworkOperatorTests.cs
@@ -382,8 +382,8 @@ public void TestOperatorAddOverflow(string left, int right, string expected)
382
/// Tests Operator functionality with Operator -.
383
/// </summary>
384
[TestMethod]
385
+ [DataRow("10.0.0.0/32", 0, "10.0.0.0/32")]
386
[DataRow("10.0.0.0/32", 1, "")]
- [DataRow("255.255.255.255/32", 1, "")]
387
[DataRow("10.0.0.0/32", 3, "")]
388
[DataRow("10.0.0.0/32", 7, "")]
389
[DataRow("10.0.0.0/32", 15, "")]
@@ -392,6 +392,7 @@ public void TestOperatorAddOverflow(string left, int right, string expected)
392
[DataRow("10.0.0.0/32", 4095, "")]
393
[DataRow("10.0.0.0/32", -1, "10.0.0.0/31")]
394
[DataRow("10.0.0.0/32", -10, "10.0.0.0/29, 10.0.0.8/31, 10.0.0.10/32")]
395
+ [DataRow("255.255.255.255/32", 1, "")]
396
[DataRow("::/128", 1, "")]
397
[DataRow("::/127", 1, "::/128")]
398
[DataRow("::/128", 3, "")]
0 commit comments