1 |
# Copyright (C) 2004 Paul Cochrane |
""" |
2 |
# |
Class and functions for testing the Axes class |
3 |
# This program is free software; you can redistribute it and/or |
|
4 |
# modify it under the terms of the GNU General Public License |
@var __author__: name of author |
5 |
# as published by the Free Software Foundation; either version 2 |
@var __license__: licence agreement |
6 |
# of the License, or (at your option) any later version. |
@var __copyright__: copyrights |
7 |
# |
@var __url__: url entry point on documentation |
8 |
# This program is distributed in the hope that it will be useful, |
@var __version__: version |
9 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
@var __date__: date of the version |
10 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
""" |
|
# GNU General Public License for more details. |
|
|
# |
|
|
# You should have received a copy of the GNU General Public License |
|
|
# along with this program; if not, write to the Free Software |
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
11 |
|
|
12 |
# $Id: test_axes.py,v 1.2 2004/11/24 06:24:06 paultcochrane Exp $ |
__copyright__=""" Copyright (c) 2006 by ACcESS MNRF |
13 |
|
http://www.access.edu.au |
14 |
|
Primary Business: Queensland, Australia""" |
15 |
|
__license__="""Licensed under the Open Software License version 3.0 |
16 |
|
http://www.opensource.org/licenses/osl-3.0.php""" |
17 |
|
__author__="Paul Cochrane" |
18 |
|
__url__="http://www.iservo.edu.au/esys" |
19 |
|
__version__="$Revision$" |
20 |
|
__date__="$Date$" |
21 |
|
|
|
## @file test_axes.py |
|
22 |
|
|
23 |
import unittest |
import unittest |
24 |
import sys,os,string |
import sys,os,string |
26 |
sys.path.append(here) |
sys.path.append(here) |
27 |
from pyvisi import * # this should import all of the pyvisi stuff needed |
from pyvisi import * # this should import all of the pyvisi stuff needed |
28 |
|
|
29 |
from ESyS import * |
from esys.escript import * |
30 |
import Finley |
import Finley |
31 |
|
|
|
""" |
|
|
Class and functions for testing the Axes class |
|
|
""" |
|
|
|
|
32 |
class TestAxes(unittest.TestCase): |
class TestAxes(unittest.TestCase): |
33 |
""" |
""" |
34 |
The main test class |
The main test class |