Running a Property
Understand how to integrate and execute a basic property test in an Elixir project using PropEr. Explore writing properties instead of traditional unit tests, running multiple test cases, and interpreting the bundled results for property-based testing.
We'll cover the following...
We'll cover the following...
The properties we’ve seen so far left a lot to the imagination. Now that we have a stand-in directory structure similar to what we’d use in a real project, we can tie everything together. We’ll add a property to the project and execute it. The property will be basic and test nothing of ...