1 |
/* |
2 |
***************************************************************************** |
3 |
* * |
4 |
* COPYRIGHT ACcESS - All Rights Reserved * |
5 |
* * |
6 |
* This software is the property of ACcESS. No part of this code * |
7 |
* may be copied in any form or by any means without the expressed written * |
8 |
* consent of ACcESS. Copying, use or modification of this software * |
9 |
* by any unauthorised person is illegal unless that person has a software * |
10 |
* license agreement with ACcESS. * |
11 |
* * |
12 |
***************************************************************************** |
13 |
*/ |
14 |
|
15 |
#include "escript/Data/FunctionSpace.h" |
16 |
#include "escript/Data/NullDomain.h" |
17 |
|
18 |
#include "FunctionSpaceTestCase.h" |
19 |
|
20 |
#include <iostream> |
21 |
#include <sstream> |
22 |
|
23 |
using namespace CppUnitTest; |
24 |
using namespace escript; |
25 |
using namespace std; |
26 |
|
27 |
void FunctionSpaceTestCase::setUp() { |
28 |
// |
29 |
// This is called before each test is run |
30 |
|
31 |
} |
32 |
|
33 |
void FunctionSpaceTestCase::tearDown() { |
34 |
// |
35 |
// This is called after each test has been run |
36 |
|
37 |
} |
38 |
|
39 |
void FunctionSpaceTestCase::testAll() { |
40 |
// |
41 |
// The test code may be entered here |
42 |
// There is nothing special about the function name, it may be renamed to |
43 |
// something more suitable. |
44 |
// As many test methods as desired may be added. |
45 |
|
46 |
cout << endl; |
47 |
|
48 |
cout << "\tTest default FunctionSpace constructor." << endl; |
49 |
|
50 |
// Test Default constructor |
51 |
FunctionSpace testFunctionSpace0; |
52 |
FunctionSpace testFunctionSpace1; |
53 |
|
54 |
assert(testFunctionSpace0==testFunctionSpace1); |
55 |
|
56 |
cout << "\tTest FunctionSpace constructor." << endl; |
57 |
|
58 |
// Test constructor |
59 |
NullDomain nullDomain; |
60 |
int testfunctionSpaceType = nullDomain.getFunctionCode(); |
61 |
|
62 |
FunctionSpace testFunctionSpace2(nullDomain, testfunctionSpaceType); |
63 |
|
64 |
assert(testFunctionSpace1.getTypeCode()==testfunctionSpaceType); |
65 |
assert(testFunctionSpace2.getDomain()==nullDomain); |
66 |
assert(testFunctionSpace1.getDim()==1); |
67 |
assert(testFunctionSpace1==testFunctionSpace1); |
68 |
assert(!(testFunctionSpace1!=testFunctionSpace1)); |
69 |
|
70 |
testFunctionSpace1=testFunctionSpace2; |
71 |
assert(testFunctionSpace1==testFunctionSpace2); |
72 |
|
73 |
} |
74 |
|
75 |
TestSuite* FunctionSpaceTestCase::suite () |
76 |
{ |
77 |
// |
78 |
// create the suite of tests to perform. |
79 |
TestSuite *testSuite = new TestSuite ("FunctionSpaceTestCase"); |
80 |
|
81 |
testSuite->addTest (new TestCaller< FunctionSpaceTestCase>("testAll",&FunctionSpaceTestCase::testAll)); |
82 |
return testSuite; |
83 |
} |