Changes for page Tips and Tricks

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

From version 1.2
edited by chrisby
on 2023/05/29 10:58
Change comment: There is no comment for this version
To version 1.3
edited by chrisby
on 2023/05/29 11:02
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -28,7 +28,8 @@
28 28  }
29 29  {{/code}}
30 30  
31 -* **Different branches of production code should be checked in different tests.** 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:
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 32  
33 33  {{code}}
34 34  // bad - still passes when x == false and y == false