Example #1
0
        public void IsInconsisted3()
        {
            double a = 0, b = 1;
            bool   resp = Equazioni.IsInconstisted(a, b);
            bool   risultato_aspettato = false;

            Assert.AreEqual(risultato_aspettato, resp);
        }
Example #2
0
        public void IsInconsisted2()
        {
            double a = 1, b = 0;
            bool   resp = Equazioni.IsInconstisted(a, b);
            bool   risultato_aspettato = true;

            Assert.AreEqual(risultato_aspettato, resp);
        }