Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 378 Bytes

notes.md

File metadata and controls

14 lines (13 loc) · 378 Bytes

Terms with regards to testing

  • code paths
  • fuzz testing
  • assertions
    • match
  • mocks
    • independent from the environment from where it runs
    • don't need to talk to a real database
    • don't need to use the actual file system
    • test against fake implementations
  • coverage
    • which code paths were visited
    • do we need to write more tests to cover everything