What is the value of checking in failing unit tests?
- by Adam W.
While there are ways of keeping unit tests from being executed, what is the value of checking in failing unit tests?
I will use a simple example: Case Sensitivity. The current code is case sensitive. A valid input into the method is "Cat" and it would return an enum of Animal.Cat. However, the desired functionality of the method should not be…