(self)
| 215 | check_d_samples(qn, n=10000) |
| 216 | |
| 217 | def test_offgrid_int(self): |
| 218 | qn = qnormal_gen(0, 1, 2) |
| 219 | assert qn.pmf(0) > 0.0 |
| 220 | assert qn.pmf(1) == 0.0 |
| 221 | assert qn.pmf(2) > 0.0 |
| 222 | |
| 223 | def test_offgrid_float(self): |
| 224 | qn = qnormal_gen(0, 1, 0.2) |
nothing calls this directly
no test coverage detected