Unit Testing
- A explanation of what unit testing is by Andy Sterkowitz.
- Aim to test behaviour and not specific methods.
- Structure tests well by:
- writing descriptive test names, and
- organising each test according to Arrange, Act, Assert.
- Unit tests should always follow the FIRST principles.
- My own brief Guide to Writing Unit Tests.