Mercurial > repos > yufei-luo > s_mart
annotate commons/pyRepetUnit/hmmer/check/test/detectFeatureConfigCheckerTestSuite.py @ 18:94ab73e8a190
Uploaded
author | m-zytnicki |
---|---|
date | Mon, 29 Apr 2013 03:20:15 -0400 |
parents | |
children |
rev | line source |
---|---|
18 | 1 ''' |
2 Created on 29 mai 2009 | |
3 | |
4 @author: oinizan | |
5 ''' | |
6 import unittest | |
7 import sys | |
8 import TestDetectFeaturesConfigChecker | |
9 | |
10 | |
11 | |
12 | |
13 def main(): | |
14 | |
15 commonsTestSuite = unittest.TestSuite() | |
16 commonsTestSuite.addTest(unittest.makeSuite(TestDetectFeaturesConfigChecker.TestDetectFeaturesConfigChecker,'test')) | |
17 runner = unittest.TextTestRunner(sys.stderr, 2, 2) | |
18 runner.run(commonsTestSuite) | |
19 | |
20 | |
21 if __name__ == '__main__': | |
22 main() |