-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEstadisticaPrueba.cpp
49 lines (40 loc) · 978 Bytes
/
EstadisticaPrueba.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
#include "EstadisticaPrueba.h"
EstadisticaPrueba::EstadisticaPrueba()
{
cantCorrectas = cantIncorrectas = cantNoImplementadas = cantComentadas = 0;
}
EstadisticaPrueba::~EstadisticaPrueba()
{
}
int EstadisticaPrueba::getCantidadCorrectas()const
{
return cantCorrectas;
}
int EstadisticaPrueba::getCantidadIncorrectas()const
{
return cantIncorrectas;
}
int EstadisticaPrueba::getCantidadNoImplementadas()const
{
return cantNoImplementadas;
}
int EstadisticaPrueba::getCantidadComentadas()const
{
return cantComentadas;
}
void EstadisticaPrueba::resetearResultados()
{
cantCorrectas = cantIncorrectas = cantNoImplementadas = 0;
}
void EstadisticaPrueba::actualizarEstadisticas(TipoRetorno nroRetorno, TipoRetorno nroRetornoEsperado)
{
if ( nroRetorno == nroRetornoEsperado ) {
cantCorrectas++;
} else if ( nroRetorno == NO_IMPLEMENTADA ) {
cantNoImplementadas++;
} else if (nroRetorno == COMENTADA ) {
cantComentadas++;
} else {
cantIncorrectas++;
}
}