Exemple #1
0
 public static void ComputeInt32Checksum0b(string value)
 {
     Assert.Throws <ArgumentOutOfRangeException>("value", () => IbanCheckDigits.ComputeInt32Checksum(value));
 }
Exemple #2
0
 public static void ComputeInt32Checksum3(string value)
 => Assert.Throws <ArgumentException>(() => IbanCheckDigits.ComputeInt32Checksum(value));
Exemple #3
0
 public static void ComputeInt32Checksum0a()
 {
     Assert.Throws <ArgumentNullException>("value", () => IbanCheckDigits.ComputeInt32Checksum(null));
 }
Exemple #4
0
 public static void ComputeInt32Checksum2(string value)
 => Assert.NotEqual(1, IbanCheckDigits.ComputeInt32Checksum(value));