root/test.py

Revision 194:247da5f0ff9f, 221 bytes (checked in by Chris Freeze <cfreeze@…>, 14 months ago)

start of a testing framework, a bit late though…

Line 
1#!/usr/bin/python
2
3import unittest
4
5from test.testConfig import testConfig
6
7if __name__ == '__main__':
8        allTests = unittest.TestSuite([
9                                                testConfig.suite()
10                                        ])
11        unittest.TextTestRunner(verbosity=3).run(allTests)
Note: See TracBrowser for help on using the browser.