1 |
jgs |
153 |
# $Id$ |
2 |
|
|
|
3 |
|
|
import unittest |
4 |
jgs |
154 |
from esys.escript.test_util import Test_util_with_tagged_Data |
5 |
jgs |
153 |
from esys.escript import FunctionOnBoundary |
6 |
|
|
from esys.finley import Rectangle |
7 |
|
|
import sys |
8 |
|
|
|
9 |
jgs |
154 |
class Test_UtilOnFinley(Test_util_with_tagged_Data): |
10 |
jgs |
153 |
def setUp(self): |
11 |
|
|
self.__dom =Rectangle(10,10,2) |
12 |
|
|
self.functionspace = FunctionOnBoundary(self.__dom) # due to a bug in escript python needs to hold a reference to the domain |
13 |
|
|
|
14 |
|
|
if __name__ == '__main__': |
15 |
|
|
suite = unittest.TestSuite() |
16 |
|
|
suite.addTest(unittest.makeSuite(Test_UtilOnFinley)) |
17 |
|
|
s=unittest.TextTestRunner(verbosity=2).run(suite) |
18 |
|
|
if s.wasSuccessful(): |
19 |
|
|
sys.exit(0) |
20 |
|
|
else: |
21 |
|
|
sys.exit(1) |
22 |
|
|
|