YON CISE

About Tests

Yesterday, I watched Russ Cox’s video on Go testing titled “Go Testing By Example.” The points and tips provided in the video are very useful for software engineering, regardless of the language you use. I said “software engineering” instead of “programming” because Russ Cox believes there are differences between the two. He thinks software engineering is what happens to programming when you add time and other programmers. That is a good insight and the reason why we should write tests.

Here are the 20 tips from the video. Some of them are specific to Go, but most are applicable to all languages:

  1. Make it easy to add new test cases.
    1. Table-Driven Test is your friend
  2. Use test coverage to find untested code.
  3. Coverage is no substitute for thought.
  4. Write exhaustive tests.
  5. Separate test cases from test logic.
  6. Look for special cases.
  7. If you didn’t add a test, you didn’t fix the bug.
  8. Not everything fits in a table.
  9. Test cases can be in testdata files.
  10. Compare against other implementations.
  11. Make test failures readable.
  12. If the answer can change, write code to update them.
  13. Use txtar for multi-file test cases.
  14. Annotate existing formats to create testing mini-languages.
  15. Write parsers and printers to simplify tests.
  16. Code quality is limited by test quality.
  17. Scripts make good tests.
  18. Try rsc.io/script for your own script-based test cases.
  19. Improve your tests over time.
  20. Aim for continuous deployment.