|
|
|
|
|
by parentheses
761 days ago
|
|
Very specific question: when tests fail due to a single example, you suggest creating a specific assertion with the given seed. I imagine the seed is used to generate data and depending on the order of your generators, it produces different results. For example, in: PBT.assert(seed = ..) do
PBT.property(PBT.integer, PBT.string) ...
end
Would changing the order of parameters to `property` change the actual test case? |
|