(self)
| 131 | assert_array_equal(random.binomial(zeros, p), zeros) |
| 132 | |
| 133 | def test_p_is_nan(self): |
| 134 | # Issue #4571. |
| 135 | assert_raises(ValueError, random.binomial, 1, np.nan) |
| 136 | |
| 137 | |
| 138 | class TestMultinomial: |
nothing calls this directly
no test coverage detected