1 |
ksteube |
1312 |
|
2 |
|
|
/* $Id$ */ |
3 |
|
|
|
4 |
|
|
/******************************************************* |
5 |
|
|
* |
6 |
|
|
* Copyright 2003-2007 by ACceSS MNRF |
7 |
|
|
* Copyright 2007 by University of Queensland |
8 |
|
|
* |
9 |
|
|
* http://esscc.uq.edu.au |
10 |
|
|
* Primary Business: Queensland, Australia |
11 |
|
|
* Licensed under the Open Software License version 3.0 |
12 |
|
|
* http://www.opensource.org/licenses/osl-3.0.php |
13 |
|
|
* |
14 |
|
|
*******************************************************/ |
15 |
|
|
|
16 |
jgs |
82 |
#if !defined DataEmptyTestCase_20040824_H |
17 |
|
|
#define DataEmptyTestCase_20040824_H |
18 |
|
|
|
19 |
gross |
700 |
#include "tools/CppUnitTest/TestCase.h" |
20 |
|
|
#include "tools/CppUnitTest/TestSuite.h" |
21 |
|
|
#include "tools/CppUnitTest/TestCaller.h" |
22 |
jgs |
82 |
|
23 |
|
|
class DataEmptyTestCase : public CppUnitTest::TestCase |
24 |
|
|
{ |
25 |
|
|
public: |
26 |
|
|
|
27 |
|
|
// |
28 |
|
|
// setUp is called before each test method to set up test state |
29 |
|
|
void setUp(); |
30 |
|
|
// |
31 |
|
|
// tearDown is called after each test method is called. |
32 |
|
|
void tearDown(); |
33 |
|
|
|
34 |
|
|
// |
35 |
|
|
// A test method must return void and have no arguments |
36 |
|
|
// DataEmpty class |
37 |
|
|
void testAll(); |
38 |
|
|
|
39 |
|
|
DataEmptyTestCase (std::string name) : TestCase (name) {} |
40 |
|
|
~DataEmptyTestCase() {} |
41 |
|
|
// |
42 |
|
|
// |
43 |
|
|
// return the suite of tests to perform |
44 |
|
|
// |
45 |
|
|
static CppUnitTest::TestSuite* suite (); |
46 |
|
|
}; |
47 |
|
|
|
48 |
|
|
#endif |