Skip to content

Commit

Permalink
cambios
Browse files Browse the repository at this point in the history
  • Loading branch information
larafava committed Dec 2, 2023
1 parent f700dbf commit 0f603cf
Showing 1 changed file with 8 additions and 22 deletions.
30 changes: 8 additions & 22 deletions Proyecto/testing/tst_proyecto.cpp
Original file line number Diff line number Diff line change
@@ -1,30 +1,16 @@
#include <catch2/catch.hpp>
#include "funciones.h"

/*
TEST_CASE("Prueba de registrarCliente", "[registrarCliente]")
{
// Configurar datos de prueba

TEST_CASE("Prueba de registrarCliente", "[registrarCliente]") {
// Inicializa una lista de clientes vacía
Cliente* listaClientes = nullptr;
int tamactual = 0;
int N = 0;

// Llamar a la función registrarCliente con un nuevo cliente
Cliente nuevoCliente = {1, "Juan", "Perez", "[email protected]", "123456789", "13-08-2002", 0};
registrarCliente(listaClientes, &tamactual, nuevoCliente);
// Llama a la función registrarCliente
registrarCliente(listaClientes, N);

// Realizar aserciones sobre la nueva configuración de listaClientes y tamactual
REQUIRE(tamactual == 1);
REQUIRE(listaClientes != nullptr);
REQUIRE(listaClientes[0].idCliente == 1);
REQUIRE(listaClientes[0].nombre == "Juan");
REQUIRE(listaClientes[0].apellido == "Perez");
REQUIRE(listaClientes[0].email == "[email protected]");
REQUIRE(listaClientes[0].telefono == "123456789");
REQUIRE(listaClientes[0].fechaNac == "13-08-2002");
REQUIRE(listaClientes[0].estado == 0);
REQUIRE(N == 1);
}


delete[] listaClientes;
// REQUIRE(0 == 0);
}
*/

0 comments on commit 0f603cf

Please sign in to comment.