2035 Views
Unit testing has many benefits to your day to day coding. Unit tests document assumptions that were made when the code was written, they help you make sure that your edits haven't broken the code, and if using TDD - unit tests help write cleaner code. Code coverage is a metric commonly used to gauge unit test quality.
0 comments