(self)
| 205 | |
| 206 | class TestQNormal(unittest.TestCase): |
| 207 | def test_smallq(self): |
| 208 | mu, sigma, q = (0, 1, 0.1) |
| 209 | qn = qnormal_gen(mu, sigma, q) |
| 210 | check_d_samples(qn, n=10000) |
| 211 | |
| 212 | def test_bigq(self): |
| 213 | mu, sigma, q = (-20, 4, 3) |
nothing calls this directly
no test coverage detected