-
Notifications
You must be signed in to change notification settings - Fork 42
Description
Hello! Thanks for this great library and apologies in advance if this is me just missunderstanding it (go newbie).
I've got a stateful system, a bitarray and the state is a []bool. I'm trying to assert that the bitarray is equivalent to the state ([]bool).
I'm using 2 gen.IntRange:
- for the initial state (to explore different array sizes)
- for the command (set value at Index to be true/false, using IntRange to avoid out-of-bounds Index values)
Despite using IntRange to stay within the bounds of he SUT and state, I eventually see illegal values (I suspect during the shrink phase, as they only appear after the post condition fails), which causes the test to panic.
Is this intended behaviour for the gen.IntRange (to shrink outside the range)?
Another interesting detail: if I remove the IntRange from the initial state and only keep it in the command, the Index values for the command stay within range and I never see the panic.
See an example here: https://play.golang.org/p/xplrfKS_Nvm
Thanks!