Mercurial > repos > yufei-luo > s_mart
annotate SMART/Java/Python/misc/test/Test_Utils.py @ 13:03045debed6e
Uploaded
author | m-zytnicki |
---|---|
date | Wed, 17 Apr 2013 10:39:35 -0400 |
parents | 769e306b7933 |
children |
rev | line source |
---|---|
6 | 1 import unittest |
2 from SMART.Java.Python.misc import Utils | |
3 | |
4 | |
5 class Test_Utils(unittest.TestCase): | |
6 | |
7 def testFisherExactPValue(self): | |
8 self.assertAlmostEqual(Utils.fisherExactPValue(3, 1, 1, 3), 0.4857142857142842, 3) | |
9 | |
10 | |
11 if __name__ == '__main__': | |
12 unittest.main() | |
13 |