Default Generators
Get introduced to generators and take a look at a few default generators provided by PropEr.
We'll cover the following...
Generators
Generators are a huge part of where a property-based testing framework’s magic comes from. While we do the hard work of coming up with properties, the efficiency with which they will be exercised depends on what kind of inputs will be passed to them. A framework with inadequate generators is not an interesting framework, and great generators will directly impact how much trust we can put in our tests.
Generators are functions that contain ...