Exemplo n.º 1
0
 public void TestLuhn()
 {
     Assert.AreEqual(true, Luhn.LuhnValidate("125"));
     Assert.AreEqual(5, Luhn.ComputeCheckDigit("12"));
     Assert.AreEqual("125", Luhn.LuhnCreate("12", out _));
 }