public static void ComputeInt64Checksum3(string value) => Assert.Throws <ArgumentException>(() => IbanCheckDigits.ComputeInt64Checksum(value));
public static void ComputeInt64Checksum0b(string value) { Assert.Throws <ArgumentOutOfRangeException>("value", () => IbanCheckDigits.ComputeInt64Checksum(value)); }
public static void ComputeInt64Checksum2(string value) => Assert.NotEqual(1, IbanCheckDigits.ComputeInt64Checksum(value));
public static void ComputeInt64Checksum0a() { Assert.Throws <ArgumentNullException>("value", () => IbanCheckDigits.ComputeInt64Checksum(null)); }