1 |
|
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 |
#include <iostream> |
17 |
|
18 |
#include "DataEmptyTestCase.h" |
19 |
#include "DataConstantTestCase.h" |
20 |
#include "DataTaggedTestCase.h" |
21 |
#include "DataExpandedTestCase.h" |
22 |
#include "DataFactoryTestCase.h" |
23 |
#include "DataArrayViewTestCase.h" |
24 |
#include "DataBlocks2DTestCase.h" |
25 |
#include "DataVectorTestCase.h" |
26 |
#include "TaipanTestCase.h" |
27 |
#include "DataCTestCase.h" |
28 |
#include "DataAlgorithmAdapterTestCase.h" |
29 |
#include "FunctionSpaceTestCase.h" |
30 |
#include "DataTestCase.h" |
31 |
|
32 |
#include "tools/CppUnitTest/TestRunner.h" |
33 |
|
34 |
using namespace CppUnitTest; |
35 |
|
36 |
extern "C"{ |
37 |
#include "paso/Paso_MPI.h" |
38 |
} |
39 |
|
40 |
int main(int argc, char* argv[]) |
41 |
{ |
42 |
#ifdef PASO_MPI |
43 |
int status = MPI_Init(&argc, &argv); |
44 |
if (status != MPI_SUCCESS) { |
45 |
std::cerr << argv[0] << ": MPI_Init failed, exiting." << std::endl; |
46 |
return status; |
47 |
} |
48 |
#endif |
49 |
// |
50 |
// object which runs all of the tests |
51 |
TestRunner runner; |
52 |
// |
53 |
// add the RangeTestCase suite of tests to the runner |
54 |
runner.addTest ("DataEmpty", DataEmptyTestCase::suite()); |
55 |
runner.addTest ("DataConstant", DataConstantTestCase::suite()); |
56 |
runner.addTest ("DataTagged", DataTaggedTestCase::suite()); |
57 |
runner.addTest ("DataExpanded", DataExpandedTestCase::suite()); |
58 |
runner.addTest ("DataFactory", DataFactoryTestCase::suite()); |
59 |
runner.addTest ("DataArrayView", DataArrayViewTestCase::suite()); |
60 |
runner.addTest ("DataBlocks2D", DataBlocks2DTestCase::suite()); |
61 |
runner.addTest ("DataVector", DataVectorTestCase::suite()); |
62 |
runner.addTest ("Taipan", TaipanTestCase::suite()); |
63 |
runner.addTest ("DataC", DataCTestCase::suite()); |
64 |
runner.addTest ("DataAlgorithmAdapter", DataAlgorithmAdapterTestCase::suite()); |
65 |
runner.addTest ("FunctionSpace", FunctionSpaceTestCase::suite()); |
66 |
runner.addTest ("Data", DataTestCase::suite()); |
67 |
|
68 |
// actually run the unit tests. |
69 |
runner.run (argc, argv); |
70 |
|
71 |
#ifdef PASO_MPI |
72 |
MPI_Finalize(); |
73 |
#endif |
74 |
|
75 |
return 0; |
76 |
} |
77 |
|
78 |
|