pfdietz 5 hours ago

It's great when combined with random test input generators.

1
eru 4 hours ago

Yes, most property based testing libraries do this.

pfdietz 3 hours ago

Hypothesis in particular has a very clever way to do test reduction. The key problem is that if your test generator is enforcing some constraint on the input, it's not necessarily the case that naive pruning will preserve the constraint. Hypothesis has a fairly general way of enforcing that the generated test input continues to satisfy constraints.

eru 47 minutes ago

Yes, Hypothesis is great. And 'shrinkray' mentioned elsewhere in the comments here seems to be by the same author.