+ 10
What is unittest in Python?
3 odpowiedzi
+ 3
Unit testing is the same concept on any language.
The most difficult part is to define what do you want to define as a unit on your code, to be tested. Some could say that is a function/method, others can say it is a feature or other piece of code.
Search for "Martin Fowler unit test"
+ 1
Check it above for some idea