using Developpez.Dotnet.Algorithms; using NUnit.Framework; namespace Developpez.Dotnet.Tests.Algorithms { [TestFixture] public class RIBTests { [Test] public void Test_Check() { string input = "12345 67890 1234567890Z 77"; bool valid = RIB.Check(input); Assert.IsTrue(valid); input = "10408 78611 23178513194 89"; valid = RIB.Check(input); Assert.IsFalse(valid); } } }