(self)
| 91 | assert_equal(s.randint(1000), 265) |
| 92 | |
| 93 | def test_invalid_scalar(self): |
| 94 | # seed must be an unsigned 32 bit integer |
| 95 | assert_raises(TypeError, random.RandomState, -0.5) |
| 96 | assert_raises(ValueError, random.RandomState, -1) |
| 97 | |
| 98 | def test_invalid_array(self): |
| 99 | # seed must be an unsigned 32 bit integer |
nothing calls this directly
no test coverage detected