Putting It All Together
Discover how to combine thoroughly tested units into a complete Erlang application using property-based testing principles. Learn practical steps for packaging and running programs, managing input data, and maintaining test coverage to ensure resilient and maintainable code.
We'll cover the following...
We'll cover the following...
The main function
It’s now time to take these well-tested bits and integrate them. Fortunately for us, we care about unit tests, so we can just throw everything together quickly and consider our job done. Let’s take a look at the main functions and see how that could be done.
The email client is ...