Changes for page Tips and Tricks
Last modified by chrisby on 2024/04/01 13:11
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,6 +1,6 @@ 1 1 Here are a few general guideline that help to write better test code as well as influencing the design of the production code. 2 2 3 -* **Frequent Execution**: Run tests frequently, ideally before every commit, for optimal quality assurance. In particular, run all relevant tests before pushing code or creating a pull/merge request. 'Continuous integration'practices are helpful for enforcing testing of code uploaded by other developers.3 +* **Frequent Execution**: Run tests frequently, ideally before every commit, for optimal quality assurance. In particular, run all relevant tests before pushing code or creating a pull/merge request. [[Continuous Integration>>doc:Software Engineering.Agile.Extreme Programming.Continuous Integration.WebHome]] practices are helpful for enforcing testing of code uploaded by other developers. 4 4 * Use **functional programming** for data processing tasks because it is less prone to errors and side effects. 5 5 * It's common to create **test users and test data** to facilitate the testing process. 6 6 * Don't reinvent the wheel and **use existing test libraries**. There are proven solutions that minimize the effort of creating tests.