Tool
Unit Testing
Small, fast and isolated tests exercising a single unit of logic with mocked dependencies; the first layer of the testing pyramid.
Key points
- ▸Isolation: the unit under test never touches network, disk or DB — every dependency is mocked or injected.
- ▸Three-A pattern (Arrange, Act, Assert) keeps tests readable and lowers maintenance cost.
- ▸Coverage is not the goal: a covered line with a weak assertion is worse than an uncovered line that's honest about the gap.
Seed content from the CV; pending manual review or Trilium ingestion.