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 DataAlgorithmAdapterTestCase_20040715_H |
16 |
#define DataAlgorithmAdapterTestCase_20040715_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 DataAlgorithmAdapterTestCase : 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 |
// tearDown is called after each test method is called. |
33 |
void tearDown(); |
34 |
|
35 |
// |
36 |
// A test method must return void and have no arguments |
37 |
// DataAlgorithmAdapter class |
38 |
void testAll(); |
39 |
void testAlgorithm(); |
40 |
void testDpAlgorithm(); |
41 |
|
42 |
DataAlgorithmAdapterTestCase (std::string name) : TestCase (name) {} |
43 |
~DataAlgorithmAdapterTestCase() {} |
44 |
// |
45 |
// |
46 |
// return the suite of tests to perform |
47 |
// |
48 |
static CppUnitTest::TestSuite* suite (); |
49 |
}; |
50 |
|
51 |
#endif |