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
-
... ... @@ -6,7 +6,7 @@ 6 6 * Don't reinvent the wheel and **use existing test libraries**. There are proven solutions that minimize the effort of creating tests. 7 7 * Use a common **test structure convention** by dividing the test logic into three parts 8 8 *1. **given** (a context → setting up data, fields, and objects) 9 -*1. **when** (something happens → execute production code) 9 +*1. **when** (something happens → define behavior of mocks and execute production code) 10 10 *1. **then** (a certain outcome is expected → check the result via assertions) 11 11 ** Alternative common names for the three steps: **arrange, act, assert** 12 12 * Use additional **simple high-level checks**. For example, when working with a collection, checking the number of items before examining an item from the collection in detail is a good indicator of unexpected or missing items.