Skip to content

Write Concise Unit Tests

What:

Unit tests should be small tests to test a single “unit” of your application.

Why: Unit tests ensure that your assumptions about your code match the reality of running that code. This helps to increase the reliability of your application/library.
When:Inception