Exemplo n.º 1
0
        public void TestDifferenzaDecimale()
        {
            double a = 7.5, b = 1, diff_aspettata = 6.5;
            double somma_effettiva = Gestione.DifferenzaDecimale(a, b);

            Assert.AreEqual(diff_aspettata, somma_effettiva);
        }