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