(self)
| 245 | |
| 246 | class TestQLogNormal(unittest.TestCase): |
| 247 | def test_smallq(self): |
| 248 | mu, sigma, q = (0, 1, 0.1) |
| 249 | qn = qlognormal_gen(mu, sigma, q) |
| 250 | check_d_samples(qn, n=10000) |
| 251 | |
| 252 | def test_bigq(self): |
| 253 | mu, sigma, q = (-20, 4, 3) |
nothing calls this directly
no test coverage detected