-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_hotel_cliente.c
58 lines (49 loc) · 2.06 KB
/
test_hotel_cliente.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <munit.h>
#include "main.c" // Inclui o arquivo principal para testar as funções
// Funções auxiliares para os testes
static void cadastrarClienteTest(const char *nome, int telefone) {
// Simula o cadastro de um cliente no sistema
// Aqui você pode chamar a função de cadastro de cliente do seu sistema
// Por exemplo:
// cadastrarCliente(nome, telefone);
// Certifique-se de implementar ou adaptar essa função conforme necessário.
printf("Simulando cadastro do cliente %s com telefone %d\n", nome, telefone);
}
// Teste para cadastrarCliente
static MunitResult test_cadastrarCliente(const MunitParameter params[], void *data) {
// Executa o teste de cadastro de cliente
cadastrarClienteTest("João", 123456789);
// Aqui você pode adicionar mais verificações se desejar
return MUNIT_OK;
}
// Funções de setup e teardown (opcional)
static void *test_setup(const MunitParameter params[], void *user_data) {
// Pode ser usado para inicialização antes de cada teste
printf("Configuração inicial dos testes\n");
return NULL;
}
static void test_teardown(void *fixture) {
// Pode ser usado para limpeza após cada teste
printf("Limpeza após o teste\n");
}
// Array de casos de teste
static MunitTest test_suite[] = {
{ "/cadastrarCliente", test_cadastrarCliente, test_setup, test_teardown, MUNIT_TEST_OPTION_NONE, NULL },
// Adicione mais testes conforme necessário
{ NULL, NULL, NULL, NULL, MUNIT_TEST_OPTION_NONE, NULL }
};
// Definir o conjunto de testes
static const MunitSuite suite = {
"/test_suite", // nome da suíte de testes
test_suite, // array de testes
NULL, // inicialização global (opcional)
1, // número máximo de fios a serem executados simultaneamente (0 para ilimitado)
MUNIT_SUITE_OPTION_NONE
};
// Função principal para rodar os testes
int main(int argc, char *argv[MUNIT_ARRAY_PARAM(argc + 1)]) {
return munit_suite_main(&suite, NULL, argc, argv);
}