Changes for page Tips and Tricks

Last modified by chrisby on 2024/04/01 13:11

From version 1.4
edited by chrisby
on 2023/05/29 11:03
Change comment: There is no comment for this version
To version 1.5
edited by chrisby
on 2023/05/29 12:08
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -29,7 +29,7 @@
29 29  {{/code}}
30 30  
31 31  * **Different branches** of production code should be checked in different tests.
32 -* **Avoid if-statements in the test code**, but at least be careful with assertions in if/if-else blocks, as the test may pass without executing them. To prevent this, add 'else {fails()}' at the end, or assert the condition and branch:
32 +* **Avoid if-statements in the test code**, but at least be careful with assertions in if/if-else blocks, as the test may pass without executing them. To prevent this, here are a few suggestions:
33 33  
34 34  {{code}}
35 35  // bad - still passes when x == false and y == false