Skip to content

Commit 2127375

Browse files
Update mocking.md
1 parent d44235e commit 2127375

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

courseProjectDocs/Unit-Testing/mocking.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -213,11 +213,11 @@ open courseProjectDocs/Unit-Testing/htmlcov/index.html
213213
- Slow execution (5-10 seconds per test with real I/O)
214214

215215
**After Mocking Tests**:
216-
- 15 new tests with 100% pass rate
217-
- 0.83 second execution (15-20x faster than real I/O)
218-
- Zero external dependencies (no database/file setup)
219-
- 0% flaky test rate (deterministic mocking)
220-
- 90% test code coverage
216+
- 15 new tests with 100% pass rate
217+
- 0.83 second execution (15-20x faster than real I/O)
218+
- Zero external dependencies (no database/file setup)
219+
- 0% flaky test rate (deterministic mocking)
220+
- 90% test code coverage
221221

222222
### Key Quality Metrics
223223
- **Test Independence**: 100% (no shared state between tests)

0 commit comments

Comments
 (0)