-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
TrieSDiscoCasoPrueba.hpp
50 lines (40 loc) · 1.59 KB
/
TrieSDiscoCasoPrueba.hpp
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
/** @file TrieSDiscoCasoPrueba.hpp
* Pruebas a TrieSDisco
*
* @package Mt77
* @author Vladimir Támara Patiño vtamara@pasosdeJesus.org
* Dominio público. 2008. Sin garantías.
* http://creativecommons.org/licenses/publicdomain/
* @version $Id: TrieSDiscoCasoPrueba.hpp,v 1.9 2010/01/06 04:19:25 vtamara Exp $
*/
#if !defined(CPP_UNIT_TRIESDISCOCASOPRUEBA_HPP)
#define CPP_UNIT_TRIESDISCOCASOPRUEBA_HPP
#include <cppunit/extensions/HelperMacros.h>
// De NodoTrieS usa Pos
class TrieSDiscoCasoPrueba : public CPPUNIT_NS::TestFixture
{
CPPUNIT_TEST_SUITE(TrieSDiscoCasoPrueba);
CPPUNIT_TEST(prueba_escribeNodo);
CPPUNIT_TEST(prueba_escribeCopiaNodo);
// CPPUNIT_TEST(prueba_escribePlanoStream);
CPPUNIT_TEST(prueba_escribeCopiaSubarbol);
CPPUNIT_TEST(prueba_mezclarec);
CPPUNIT_TEST(prueba_leeRelacion);
CPPUNIT_TEST(prueba_escribeRelacion);
CPPUNIT_TEST(prueba_buscaPlanoStream);
CPPUNIT_TEST(prueba_buscaPlano);
CPPUNIT_TEST_SUITE_END();
public:
void setUp();
protected:
void prueba_escribeNodo();
void prueba_escribeCopiaNodo();
// void prueba_escribePlanoStream();
void prueba_escribeCopiaSubarbol();
void prueba_mezclarec();
void prueba_leeRelacion();
void prueba_escribeRelacion();
void prueba_buscaPlanoStream();
void prueba_buscaPlano();
};
#endif