Solution: Make the Unit Test Pass
Explore how to create correct function implementations that pass unit tests in D. Understand how different coding approaches can satisfy test requirements and how to modify code safely with confidence in test reliability.
We'll cover the following...
We'll cover the following...
Solution
For demonstration purposes, let’s write an obviously incorrect implementation that passes the first test by accident. The following function simply returns a copy of the input:
Here is a correct ...