-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPosCasoPrueba.hpp
38 lines (30 loc) · 1.03 KB
/
PosCasoPrueba.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
/**
* Pruebas a Pos
*
* @author Vladimir Támara Patiño vtamara@pasosdeJesus.org
* Dominio público. 2008. Sin garantías.
* http://creativecommons.org/licenses/publicdomain/ Dominio Público. Sin garantías.
* @version $Id: PosCasoPrueba.hpp,v 1.6 2010/01/06 04:19:25 vtamara Exp $
*/
#if !defined(CPP_UNIT_POSCASOPRUEBA_HPP)
#define CPP_UNIT_POSCASOPRUEBA_HPP
#include <cppunit/extensions/HelperMacros.h>
// De NodoTrieS usa Pos
class PosCasoPrueba : public CPPUNIT_NS::TestFixture
{
CPPUNIT_TEST_SUITE(PosCasoPrueba);
CPPUNIT_TEST(prueba_escribePos);
CPPUNIT_TEST(prueba_leePos);
CPPUNIT_TEST(prueba_longPos);
CPPUNIT_TEST(prueba_copiaPos);
CPPUNIT_TEST_SUITE_END();
public:
void setUp();
protected:
void prueba_escribePos();
void prueba_leePos();
void prueba_longPos();
void prueba_saltaPos();
void prueba_copiaPos();
};
#endif