-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrueba.cpp
75 lines (56 loc) · 1.72 KB
/
Prueba.cpp
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include "Prueba.h"
Prueba::Prueba(ConductorPrueba* conductor)
{
conductorPrueba = conductor;
}
Prueba::~Prueba()
{
}
void Prueba::ver(TipoRetorno retorno, TipoRetorno retornoEsperado, const char* comentario)
{
getEstadisticaPrueba().actualizarEstadisticas(retorno, retornoEsperado);
conductorPrueba->ver(retorno,retornoEsperado,comentario);
}
void Prueba::ver2(TipoRetorno retorno, TipoRetorno retornoEsperado, const char* comentario)
{
getEstadisticaPrueba().actualizarEstadisticas(retorno, retornoEsperado);
conductorPrueba->ver2(retorno,retornoEsperado,comentario);
}
void Prueba::ver3(const char* comentario)
{
conductorPrueba->ver3(comentario);
}
void Prueba::ver3(const char* comentario, double puntaje)
{
conductorPrueba->ver3(comentario, puntaje);
}
EstadisticaPrueba& Prueba::getEstadisticaPrueba()
{
return estadisticaPrueba;
}
ManejadorImpresionPrueba Prueba::getManejadorImpresion()
{
return ManejadorImpresionPrueba::getInstancia();
}
ManejadorSalidaPrueba Prueba::getManejadorSalida()
{
return ManejadorSalidaPrueba::getInstancia();
}
void Prueba::correrPrueba(bool paraParseo)
{
const char* nombrePrueba = getNombre();
std::size_t largo = strlen(nombrePrueba) + 5;
char* nombreArchivo = new char[largo];
strcpy_s(nombreArchivo, largo, nombrePrueba);
strcat_s(nombreArchivo, largo, ".txt");
ManejadorSalidaPrueba msp = getManejadorSalida();
//msp.crearDirectorio(nombrePrueba);
msp.crearDirectorio("SalidasSinProcesar");
msp.setSalidaArchivo(nombreArchivo);
delete [] nombreArchivo;
conductorPrueba->comenzarNuevaPrueba();
correrPruebaConcreta();
ManejadorImpresionPrueba mip = getManejadorImpresion();
mip.imprimirTotalResultados(getEstadisticaPrueba(), paraParseo);
msp.cambiarDirectorio("..");
}