snapshot of 4.0a development. initial git repo commit
[erange.git] / test / testGetNovelSNPs.py
1 '''
2 Created on Aug 26, 2010
3
4 @author: sau
5 '''
6 import unittest
7
8
9 class TestGetNovelSNPs(unittest.TestCase):
10
11
12     def setUp(self):
13         pass
14
15
16     def tearDown(self):
17         pass
18
19
20     def testName(self):
21         pass
22
23
24 def suite():
25     suite = unittest.TestSuite()
26     suite.addTest(unittest.makeSuite(TestGetNovelSNPs))
27
28     return suite
29
30
31 if __name__ == "__main__":
32     #import sys;sys.argv = ['', 'Test.testName']
33     unittest.main()