Assertions
To test the outcome of our functions, we use assertions. Assertions are statements that assert or state a fact confidently in your program. For example, while writing a division function, you're confident the divisor shouldn't be zero, you assert divisor is not equal to zero.
To do so, we use the `asssertEquals()