Philosophy

Learn about the philosophy of testing in Python.

Test framework advantages

Using proper test framework has a large number of advantages, including:

  • The code is much more likely to be correct.
  • The code typically takes less time to write, because debugging time is reduced.
  • Functions written to be tested tend to be much smaller and single purpose.
  • Functions written to
...