(self)
| 282 | assert_mt19937_state_equal(attr_state, state) |
| 283 | |
| 284 | def test_repr(self): |
| 285 | random_state, _ = self._create_state() |
| 286 | assert repr(random_state).startswith('RandomState(MT19937)') |
| 287 | |
| 288 | |
| 289 | class TestRandint: |
nothing calls this directly
no test coverage detected