Beispiel #1
0
        public void ExisteTest()
        {
            bool paso = false;

            paso = PrestamosBLL.Existe(1);
            Assert.AreEqual(paso, true);
        }
Beispiel #2
0
        public void ExisteTest()
        {
            Prestamos prestamos = new Prestamos();

            prestamos.PrestamoId = 0;
            prestamos.Monto      = 200;
            prestamos.Balance    = 200;
            prestamos.Concepto   = "abs";
            PrestamosBLL.Existe(1);
        }
Beispiel #3
0
        public void ExisteTest()
        {
            bool ok = PrestamosBLL.Existe(2);

            Assert.IsTrue(ok);
        }
Beispiel #4
0
        public void ExisteTest()
        {
            var paso = PrestamosBLL.Existe(1);

            Assert.IsNotNull(paso);
        }
Beispiel #5
0
        public void ExisteTest()
        {
            bool paso = PrestamosBLL.Existe(2);

            Assert.IsTrue(paso);
        }
Beispiel #6
0
        public void ExisteTest()
        {
            bool paso = PrestamosBLL.Existe(prestamo.PrestamoId);

            Assert.IsTrue(paso, "Existe");
        }
        public void ExisteTest()
        {
            var existe = PrestamosBLL.Existe(1);

            Assert.IsNotNull(existe);
        }
Beispiel #8
0
        public void ExisteTest()
        {
            bool existe = PrestamosBLL.Existe(1);

            Assert.AreEqual(existe, true);
        }