SyFi  0.3
SyFi_polygons.test.MyTest Class Reference

List of all members.

Public Member Functions

def setUp
def tearDown
def testSetup
def testMyStuff
def testFailureExample

Public Attributes

 foo

Detailed Description

Definition at line 8 of file tests/SyFi_polygons/test.py.


Member Function Documentation

Definition at line 9 of file tests/SyFi_polygons/test.py.

References SyFi_polygons.test.MyTest.foo.

00009 
00010     def setUp(self):
00011         # initialize stuff
00012         #debug("setUp")
00013         self.foo = 1
    

Definition at line 14 of file tests/SyFi_polygons/test.py.

References SyFi_polygons.test.MyTest.foo.

00014 
00015     def tearDown(self):
00016         # delete initialized stuff
00017         #debug("tearDown")
00018         del self.foo
    

Definition at line 29 of file tests/SyFi_polygons/test.py.

00029 
00030     def testFailureExample(self):
00031         assert 1
00032         #assert 0 # uncomment to see how a failure looks like
00033 

Definition at line 24 of file tests/SyFi_polygons/test.py.

00024 
00025     def testMyStuff(self):
00026         # test whatever meant by "MyStuff"
00027         #debug("testMyStuff")
00028         assert 1
    

Definition at line 19 of file tests/SyFi_polygons/test.py.

References SyFi_polygons.test.MyTest.foo.

00019 
00020     def testSetup(self):
00021         # test initialized stuff
00022         #debug("testSetup")
00023         assert self.foo
    

Member Data Documentation


The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines