Example #1
0
        public void ExisteTest()
        {
            var paso = PrestamoBLL.Existe(1);

            Assert.IsNotNull(paso);
        }
Example #2
0
        public void ExisteTest()
        {
            bool paso = PrestamoBLL.Existe(prestamo.PrestamoId);

            Assert.IsTrue(paso, "Existe");
        }
Example #3
0
        public void ExisteTest()
        {
            bool paso = PrestamoBLL.Existe(1);

            Assert.AreEqual(paso, true);
        }