public void ExisteTest()
        {
            bool paso = false;

            paso = VentasBLL.Existe(1);
            Assert.AreEqual(paso, true);
        }
Beispiel #2
0
 public void ExisteTest()
 {
     Assert.IsTrue(VentasBLL.Existe(1));
 }
Beispiel #3
0
        public void ExisteTest()
        {
            var paso = VentasBLL.Existe(1);

            Assert.IsNotNull(paso);
        }