✅ Different seeds differ
| Category | Ability |
| Status | Passing |
| Test | tests/test_rng.py::test_different_seeds_differ |
Two RNGs with different seeds produce different sequences.
Preconditions
-
rng_a = DeterministicRNG(seed=0)
-
rng_b = DeterministicRNG(seed=99)
Action
- Roll each 20 times.
Expected Postconditions
- The sequences are NOT identical.
Assertions
assert rolls_a != rolls_b