public void LeerArchivo_EnviarUrlIncorrecto_ExceptioFileNotExist() { //Arrange LeerArchivoTexto Lector = new LeerArchivoTexto(); List <string> lstRegistros = new List <string>(); //Act Lector.lectorArchivo = e => throw new FileNotFoundException(); //Assert lstRegistros = Lector.LeerArchivo("Pedidos.txt"); }
public void LeerArchivo_EnviarUrlExistente_ArregloConRegistros() { //Arrange LeerArchivoTexto Lector = new LeerArchivoTexto(); List <string> lstRegistros = new List <string>(); //Act lstRegistros = Lector.LeerArchivo("../../../Bridge/bin/Debug/Pedidos.txt"); //Assert Assert.IsTrue(lstRegistros.Any()); }