blob: 97154bae380a6ee6e8c93bb0703bd0d4d0ca3bf6 (
plain)
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
|
#ifndef _T_UTILS_H
#define _T_UTILS_H
#include "UnitTests.h"
class UtilitiesTestCase : public CPPUNIT_NS::TestCase
{
CPPUNIT_TEST_SUITE(UtilitiesTestCase);
CPPUNIT_TEST(testConstructors);
CPPUNIT_TEST_SUITE_END();
public:
UtilitiesTestCase() {}
virtual ~UtilitiesTestCase() {}
virtual void setUp();
virtual void tearDown();
void testConstructors();
private:
UtilitiesTestCase(const UtilitiesTestCase ©);
void operator=(const UtilitiesTestCase ©);
};
#endif /* _T_UTILS_H */
|