Exemplo n.º 1
0
        public void isAnArrayBuildedAndFilledUp()
        {
            CountDig count = new CountDig();

            count.NbDig(13, 0);
            var ExpectedLenght = 14;
            //Assert.AreEqual(count.ArrayLenght, ExpectedLenght);
        }
Exemplo n.º 2
0
 public static void test1()
 {
     Console.WriteLine("Fixed Tests NbDig");
     testing(CountDig.NbDig(5750, 0), 4700);
     testing(CountDig.NbDig(11011, 2), 9481);
     testing(CountDig.NbDig(12224, 8), 7733);
     testing(CountDig.NbDig(11549, 1), 11905);
 }