1 |
/* |
2 |
***************************************************************************** |
3 |
* * |
4 |
* COPYRIGHT ACcESS - All Rights Reserved * |
5 |
* * |
6 |
* This software is the property of ACcESS. No part of this code * |
7 |
* may be copied in any form or by any means without the expressed written * |
8 |
* consent of ACcESS. Copying, use or modification of this software * |
9 |
* by any unauthorised person is illegal unless that person has a software * |
10 |
* license agreement with ACcESS. * |
11 |
* * |
12 |
***************************************************************************** |
13 |
*/ |
14 |
|
15 |
#if !defined DataProfTestCase_20050620_H |
16 |
#define DataProfTestCase_20050620_H |
17 |
|
18 |
#include "CppUnitTest/TestCase.h" |
19 |
#include "CppUnitTest/TestSuite.h" |
20 |
#include "CppUnitTest/TestCaller.h" |
21 |
|
22 |
class DataProfTestCase : public CppUnitTest::TestCase |
23 |
{ |
24 |
public: |
25 |
|
26 |
// |
27 |
// setUp is called before each test method to set up test state |
28 |
void setUp(); |
29 |
// |
30 |
// tearDown is called after each test method is called. |
31 |
void tearDown(); |
32 |
|
33 |
// |
34 |
// A test method must return void and have no arguments |
35 |
// DataProf class |
36 |
void testAll(); |
37 |
|
38 |
DataProfTestCase (std::string name) : TestCase (name) {} |
39 |
~DataProfTestCase() {} |
40 |
// |
41 |
// |
42 |
// return the suite of tests to perform |
43 |
// |
44 |
static CppUnitTest::TestSuite* suite (); |
45 |
}; |
46 |
|
47 |
#endif |