...

/

Leveraging the Virtual Machine’s Pattern Matching Engine

Leveraging the Virtual Machine’s Pattern Matching Engine

Learn how to make the virtual machine do maximum work while keeping our code clear and concise.

We'll cover the following...

The Assertion module

Now that our assert macro is in place, we can implement the proxy assert functions in a new Assertion.Test module. The Assertion.Test module will carry out the work of performing the assertions and running our tests.

When we find ourselves at a stage in code where we’ve ...