-
Notifications
You must be signed in to change notification settings - Fork 0
/
testes.h
395 lines (346 loc) · 8.75 KB
/
testes.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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
///
/// \file entidades.h
/// \version 1.0
///
#ifndef TESTES_H_INCLUDED
#define TESTES_H_INCLUDED
// biblioteca auxiliar
#include "entidades.h"
using namespace std;
///
/// \brief Classe de Teste de unidade da classe Duração
///
class TUDuracao {
private:
const static int VALOR_VALIDO = 30;
const static int VALOR_INVALIDO = 10;
Duracao *duracao;
int estado;
void setUp();
void tearDown();
void testarCenarioSucesso();
void testarCenarioFalha();
public:
const static int SUCESSO = 0;
const static int FALHA = -1;
int run();
};
///
/// \brief Classe de Teste de unidade da classe Nota
///
class TUNota {
private:
const static int VALOR_VALIDO = 1;
const static int VALOR_INVALIDO = 10;
Nota *nota;
int estado;
void setUp();
void tearDown();
void testarCenarioSucesso();
void testarCenarioFalha();
public:
const static int SUCESSO = 0;
const static int FALHA = -1;
int run();
};
///
/// \brief Classe de Teste de unidade da classe Cidade
///
class TUCidade {
private:
//const static
string VALOR_VALIDO = "macau"; // char PARA string
//const static
string VALOR_INVALIDO = "brasilia"; // char PARA string
Cidade *cidade;
int estado;
void setUp();
void tearDown();
void testarCenarioSucesso();
void testarCenarioFalha();
public:
const static int SUCESSO = 0;
const static int FALHA = -1;
int run();
};
///
/// \brief Classe de Teste de unidade da classe Codigo
///
class TUCodigo {
private:
//const static
string VALOR_VALIDO = "123456";
//const static
string VALOR_INVALIDO = "012";
Codigo *codigo;
int estado;
void setUp();
void tearDown();
void testarCenarioSucesso();
void testarCenarioFalha();
public:
const static int SUCESSO = 0;
const static int FALHA = -1;
int run();
};
///
/// \brief Classe de Teste de unidade da classe Data
///
class TUData {
private:
//const static
string VALOR_VALIDO = "12 abr 2007";
//const static
string VALOR_INVALIDO = "29 fev 2005";
Data *data;
int estado;
void setUp();
void tearDown();
void testarCenarioSucesso();
void testarCenarioFalha();
public:
const static int SUCESSO = 0;
const static int FALHA = -1;
int run();
};
///
/// \brief Classe de Teste de unidade da classe Descrição
///
class TUDescricao {
private:
//const static
string VALOR_VALIDO = "Excursao a pe em Macau.";
//const static
string VALOR_INVALIDO = "Excursao a pe em Macau.";
Descricao *descricao;
int estado;
void setUp();
void tearDown();
void testarCenarioSucesso();
void testarCenarioFalha();
public:
const static int SUCESSO = 0;
const static int FALHA = -1;
int run();
};
///
/// \brief Classe de Teste de unidade da classe Endereço
///
class TUEndereco {
private:
//const static
string VALOR_VALIDO = "Praca Civica av. L2.";
//const static
string VALOR_INVALIDO = "Praca Civica av..L2.";
Endereco *endereco;
int estado;
void setUp();
void tearDown();
void testarCenarioSucesso();
void testarCenarioFalha();
public:
const static int SUCESSO = 0;
const static int FALHA = -1;
int run();
};
///
/// \brief Classe de Teste de unidade da classe Horário
///
class TUHorario {
private:
//const static
string VALOR_VALIDO = "23:59";
//const static
string VALOR_INVALIDO = "24:00";
Horario *horario;
int estado;
void setUp();
void tearDown();
void testarCenarioSucesso();
void testarCenarioFalha();
public:
const static int SUCESSO = 0;
const static int FALHA = -1;
int run();
};
///
/// \brief Classe de Teste de unidade da classe Idioma
///
class TUIdioma {
private:
//const static
string VALOR_VALIDO = "PortugUES";
//const static
string VALOR_INVALIDO = "Sueco";
Idioma *idioma;
int estado;
void setUp();
void tearDown();
void testarCenarioSucesso();
void testarCenarioFalha();
public:
const static int SUCESSO = 0;
const static int FALHA = -1;
int run();
};
///
/// \brief Classe de Teste de unidade da classe Título
///
class TUTitulo {
private:
//const static
string VALOR_VALIDO = "Excursao Safari";
//const static
string VALOR_INVALIDO = "Excursa0 Safari..";
Titulo *titulo;
int estado;
void setUp();
void tearDown();
void testarCenarioSucesso();
void testarCenarioFalha();
public:
const static int SUCESSO = 0;
const static int FALHA = -1;
int run();
};
///
/// \brief Classe de Teste de unidade da classe Senha
///
class TUSenha {
private:
//const static
string VALOR_VALIDO = "5EnH4a";
//const static
string VALOR_INVALIDO = "%5EnH4";
Senha *senha;
int estado;
void setUp();
void tearDown();
void testarCenarioSucesso();
void testarCenarioFalha();
public:
const static int SUCESSO = 0;
const static int FALHA = -1;
int run();
};
///
/// \brief Classe de Teste de unidade da classe Email
///
class TUEmail {
private:
//const static
string VALOR_VALIDO = "iago.cossentino@gmailcom";
//const static
string VALOR_INVALIDO = "ya.@mail!";
Email *email;
int estado;
void setUp();
void tearDown();
void testarCenarioSucesso();
void testarCenarioFalha();
public:
const static int SUCESSO = 0;
const static int FALHA = -1;
int run();
};
///
/// \brief Classe de Teste de unidade da classe Nome
///
class TUNome {
private:
//const static
string VALOR_VALIDO = "Iago C.";
//const static
string VALOR_INVALIDO = "Ya.go";
Nome *nome;
int estado;
void setUp();
void tearDown();
void testarCenarioSucesso();
void testarCenarioFalha();
public:
const static int SUCESSO = 0;
const static int FALHA = -1;
int run();
};
// ************************************************************************************************/
// Testes de unidade de Entidades
// ************************************************************************************************/
///
/// \brief Classe de Teste de unidade da entidade Avaliação
///
class TUAvaliacao {
private:
string VALOR_VALIDO1 = "123456"; // Codigo
const static int VALOR_VALIDO2 = 1; // Nota
string VALOR_VALIDO3 = "Excursao a pe em Macau."; // Descrição
Avaliacao *avaliacao;
int estado;
void setUp();
void tearDown();
void testarCenarioSucesso();
public:
const static int SUCESSO = 0;
const static int FALHA = -1;
int run();
};
///
/// \brief Classe de Teste de unidade da entidade Usurário
///
class TUUsuario {
private:
string VALOR_VALIDO1 = "Iago C."; // Nome
string VALOR_VALIDO2 = "iago.cossentino@gmail.com"; // Email
string VALOR_VALIDO3 = "5EnH4a"; // Senha
Usuario *usuario;
int estado;
void setUp();
void tearDown();
void testarCenarioSucesso();
public:
const static int SUCESSO = 0;
const static int FALHA = -1;
int run();
};
///
/// \brief Classe de Teste de unidade da entidade Sessão
///
class TUSessao {
private:
string VALOR_VALIDO1 = "123456"; // Codigo
string VALOR_VALIDO2 = "12 abr 2007"; // Data
string VALOR_VALIDO3 = "23:59"; // Horario
string VALOR_VALIDO4 = "PortugUES"; // Idioma
Sessao *sessao;
int estado;
void setUp();
void tearDown();
void testarCenarioSucesso();
public:
const static int SUCESSO = 0;
const static int FALHA = -1;
int run();
};
///
/// \brief Classe de Teste de unidade da entidade Excursão
///
class TUExcursao {
private:
string VALOR_VALIDO1 = "123456"; // Codigo
string VALOR_VALIDO2 = "Excursao Safari"; // Titulo
const static int VALOR_VALIDO3 = 1; // Nota
string VALOR_VALIDO4 = "macau"; // Cidade
const static int VALOR_VALIDO5 = 30; // Duracao
string VALOR_VALIDO6 = "Excursao a pe em Macau."; // Descrição
string VALOR_VALIDO7 = "Praca Civica av. L2."; // Endereço
Excursao *excursao;
int estado;
void setUp();
void tearDown();
void testarCenarioSucesso();
public:
const static int SUCESSO = 0;
const static int FALHA = -1;
int run();
};
#endif //TESTES_H_INCLUDED