Unit tests
Unit tests is a set of tests that allow you to verify the unit of the production code. The unit of such code can be a class, a module, a method. It is important that one test verify only one functionality. Each test should consist of three basic sections: “given”, “when”, “then”. The “given” section…
Read more