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