(self)
| 163 | assert_raises(ValueError, random.multinomial, 100, [-.1, 0.9]) |
| 164 | |
| 165 | def test_invalid_n(self): |
| 166 | assert_raises(ValueError, random.multinomial, -1, [0.8, 0.2]) |
| 167 | |
| 168 | def test_p_non_contiguous(self): |
| 169 | p = np.arange(15.) |
nothing calls this directly
no test coverage detected