(self)
| 75 | |
| 76 | class TestSeed: |
| 77 | def test_scalar(self): |
| 78 | s = random.RandomState(0) |
| 79 | assert_equal(s.randint(1000), 684) |
| 80 | s = random.RandomState(4294967295) |
| 81 | assert_equal(s.randint(1000), 419) |
| 82 | |
| 83 | def test_array(self): |
| 84 | s = random.RandomState(range(10)) |
nothing calls this directly
no test coverage detected