BlockIt
|
00001 import unittest 00002 from blockit import * 00003 00004 class TestBlockParser(unittest.TestCase): 00005 00006 def setUp(self): 00007 pass 00008 00009 def tearDown(self): 00010 pass 00011 00012 def testRegister(self): 00013 pass 00014 00015 def testSetTable(self): 00016 pass 00017 00018 def testSetScanner(self): 00019 pass 00020 00021 if __name__ == '__main__': 00022 suite = unittest.TestLoader().loadTestsFromTestCase(TestBlockParser) 00023 unittest.TextTestRunner(verbosity=2).run(suite) 00024 00025