-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpa2m.h
49 lines (41 loc) · 1.09 KB
/
pa2m.h
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
#ifndef __PA2M_H_
#define __PA2M_H_
#include <stdio.h>
#define BLANCO "\x1b[37;1m"
#define VERDE "\x1b[32;1m"
#define ROJO "\x1b[31;1m"
#define AMARILLO "\x1b[33;1m"
#define NORMAL "\x1b[0m"
#define TILDE "✓"
#define CRUZ "✗"
int __pa2m_cantidad_de_pruebas_corridas = 0;
int __pa2m_cantidad_de_pruebas_fallidas = 0;
void pa2m_afirmar(int afirmacion, const char *descripcion)
{
if (afirmacion) {
printf(VERDE TILDE " ");
} else {
__pa2m_cantidad_de_pruebas_fallidas++;
printf(ROJO CRUZ " ");
}
printf(BLANCO "%s\n", descripcion);
fflush(stdout);
__pa2m_cantidad_de_pruebas_corridas++;
}
void pa2m_nuevo_grupo(const char *descripcion)
{
printf(AMARILLO "\n%s\n", descripcion);
while (*(descripcion++))
printf("=");
printf(BLANCO "\n");
}
int pa2m_mostrar_reporte()
{
printf("\n---------------------------------\n"
"%i pruebas corridas, %i errores - %s\n" NORMAL,
__pa2m_cantidad_de_pruebas_corridas,
__pa2m_cantidad_de_pruebas_fallidas,
__pa2m_cantidad_de_pruebas_fallidas == 0 ? "OK" : "D:");
return __pa2m_cantidad_de_pruebas_fallidas;
}
#endif // __PA2M_H_