public void ExisteTest() { bool paso = false; paso = PrestamosBLL.Existe(1); Assert.AreEqual(paso, true); }
public void ExisteTest() { Prestamos prestamos = new Prestamos(); prestamos.PrestamoId = 0; prestamos.Monto = 200; prestamos.Balance = 200; prestamos.Concepto = "abs"; PrestamosBLL.Existe(1); }
public void ExisteTest() { bool ok = PrestamosBLL.Existe(2); Assert.IsTrue(ok); }
public void ExisteTest() { var paso = PrestamosBLL.Existe(1); Assert.IsNotNull(paso); }
public void ExisteTest() { bool paso = PrestamosBLL.Existe(2); Assert.IsTrue(paso); }
public void ExisteTest() { bool paso = PrestamosBLL.Existe(prestamo.PrestamoId); Assert.IsTrue(paso, "Existe"); }
public void ExisteTest() { var existe = PrestamosBLL.Existe(1); Assert.IsNotNull(existe); }
public void ExisteTest() { bool existe = PrestamosBLL.Existe(1); Assert.AreEqual(existe, true); }