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