1
0
mirror of https://github.com/oliverbooth/X10D synced 2024-11-09 23:45:42 +00:00

fix(test): assert ArgumentNullException only for .NET < 6

This commit is contained in:
Oliver Booth 2023-04-03 13:47:59 +01:00
parent 9985652c40
commit 262f191799
No known key found for this signature in database
GPG Key ID: 20BEB9DC87961025

View File

@ -226,7 +226,9 @@ public class RandomTests
Random? random = null;
Assert.ThrowsException<ArgumentNullException>(() => random!.NextSingle(10));
Assert.ThrowsException<ArgumentNullException>(() => random!.NextSingle(0, 10));
#if !NET6_0_OR_GREATER
Assert.ThrowsException<ArgumentNullException>(() => random!.NextSingle());
#endif
}
[TestMethod]