Challenge: Applying TDD
Complete the TDD process by implementing code that passes existing tests in an incomplete .NET application. Learn to write clean, maintainable code following TDD best practices, including method splitting and constant definition, while understanding how tests guide development.
We'll cover the following...
We'll cover the following...
In this lesson’s playground, we have an incomplete application. The application needs to accept an integer and tell us if the integer’s value is odd, even, or invalid. Any value smaller than one is classed as invalid. ...