BlockIt
testBlock.py
Go to the documentation of this file.
00001 import unittest
00002 from blockit import *
00003 
00004 class TestBlock(unittest.TestCase):
00005     
00006     def setUp(self):
00007         pass
00008 
00009     def tearDown(self):
00010         pass
00011 
00012     def testAddChild(self):
00013         pass
00014 
00015     def testSetParent(self):
00016         pass
00017 
00018     def testContains(self):
00019         pass
00020 
00021     def testPopChild(self):
00022         pass
00023 
00024     def testShareDeps(self):
00025         pass
00026 
00027 
00028 if __name__ == '__main__':
00029     suite = unittest.TestLoader().loadTestsFromTestCase(TestBlock)
00030     unittest.TextTestRunner(verbosity=2).run(suite)
00031     
00032         
All Classes Namespaces Files Functions Variables Properties