1 |
""" |
2 |
Class and functions for testing the Plane class |
3 |
|
4 |
@var __author__: name of author |
5 |
@var __license__: licence agreement |
6 |
@var __copyright__: copyrights |
7 |
@var __url__: url entry point on documentation |
8 |
@var __version__: version |
9 |
@var __date__: date of the version |
10 |
""" |
11 |
|
12 |
__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 |
|
22 |
|
23 |
import unittest |
24 |
import sys,os,string |
25 |
here = os.getcwd() + '/../../' |
26 |
sys.path.append(here) |
27 |
from pyvisi import * # this should import all of the pyvisi stuff needed |
28 |
|
29 |
class TestPlane(unittest.TestCase): |
30 |
""" |
31 |
The main test class |
32 |
""" |
33 |
|
34 |
def testFunction(self): |
35 |
""" |
36 |
A test function |
37 |
""" |
38 |
self.assertEqual() |
39 |
self.assertRaises() |
40 |
self.assert_() |
41 |
|
42 |
if __name__ == '__main__': |
43 |
unittest.main() |
44 |
|
45 |
|
46 |
# vim: expandtab shiftwidth=4: |