0
votes
How do you know what to test when writing unit tests?
Testing of a class should verify that:
1. methods and properties return expected values
2. Appropriate excepts are thrown when an invalid argument is supplied
3. Interactions between …
