(self)
| 194 | |
| 195 | class TestSetState: |
| 196 | def _create_state(self): |
| 197 | seed = 1234567890 |
| 198 | random_state = random.RandomState(seed) |
| 199 | state = random_state.get_state() |
| 200 | return random_state, state |
| 201 | |
| 202 | def test_basic(self): |
| 203 | random_state, state = self._create_state() |
no outgoing calls
no test coverage detected