Changes between Version 12 and Version 13 of HowToWriteTests
- Timestamp:
- 2021-09-14T14:55:31Z (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToWriteTests
v12 v13 27 27 28 28 Now run it! 29 30 You may notice some existing tests use the `mock` module. 31 We are phasing out this style of testing. 32 Please do not use it in new tests. 33 Instead, factor units and interfaces so mocks are not required. 34 If that is not possible then implement units so that they don't need to be mocked and can be used in the test suite. 35 If that is not possible then implement a verified fake of the required interface and use that in the test suite. 29 36 30 37 = code coverage =