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 DataTaggedTestCase_20040616_H |
16 |
#define DataTaggedTestCase_20040616_H |
17 |
|
18 |
#include "CppUnitTest/TestCase.h" |
19 |
#include "CppUnitTest/TestSuite.h" |
20 |
#include "CppUnitTest/TestCaller.h" |
21 |
|
22 |
class DataTaggedTestCase : 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 |
// DataTagged class |
36 |
void testAll(); |
37 |
void testAddTaggedValues(); |
38 |
void testReshape(); |
39 |
void testOperations(); |
40 |
|
41 |
DataTaggedTestCase (std::string name) : TestCase (name) {} |
42 |
~DataTaggedTestCase() {} |
43 |
// |
44 |
// |
45 |
// return the suite of tests to perform |
46 |
// |
47 |
static CppUnitTest::TestSuite* suite (); |
48 |
}; |
49 |
|
50 |
#endif |