Search⌘ K

Recommended Tests

Explore how to recommend effective code tests that ensure software correctness. Understand the importance of testing computationally sensitive code and using alternative methods for validation. Learn how snapshot and integration tests help verify code integrity after changes.

There are two categories of tests that we recommend:

  • Computationally easy to mess up.
  • One where an alternative approach exists.

Computationally easy to mess up

The first is where the code is computing something that is computationally easy to mess up. An example of ...