(self)
| 232 | assert qn.pmf(-0.99) == 0.0 |
| 233 | |
| 234 | def test_numeric(self): |
| 235 | qn = qnormal_gen(0, 1, 1) |
| 236 | assert qn.pmf(500) > -np.inf |
| 237 | |
| 238 | def test_output_type_int(self): |
| 239 | result = qnormal_gen(0, 10, 1).rvs() |
nothing calls this directly
no test coverage detected