Conversation
There was a problem hiding this comment.
Pull request overview
This PR adds comprehensive documentation for mocking delegates in Mockolate, addressing issue #413. The documentation covers setup and verification of Action, Func<T>, and custom delegates, including those with ref and out parameters.
Changes:
- Added new "Special Types" documentation section containing HttpClient and delegates
- Reorganized documentation structure with new category files for "Special Types" and "Advanced Features"
- Updated README.md to include delegate documentation inline
Reviewed changes
Copilot reviewed 6 out of 8 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| README.md | Added comprehensive delegates section under "Special Types" with setup and verification examples |
| Docs/pages/special-types/02-delegates.md | New dedicated delegates documentation page with detailed examples |
| Docs/pages/special-types/01-httpclient.md | Renamed from "Mocking HttpClient" to "HttpClient" for consistency |
| Docs/pages/special-types/category.json | New category configuration for "Special Types" section at position 6 |
| Docs/pages/advanced-features/category.json | New category configuration for "Advanced Features" section at position 5 |
| Mockolate.slnx | Updated solution file structure to reflect new documentation organization |
🚀 Benchmark ResultsDetails
|
|
|
This is addressed in release v1.1.0. |



This PR adds comprehensive documentation for mocking delegates in Mockolate. The documentation covers setup and verification of
Action,Func<T>, and custom delegates, including those withrefandoutparameters.Changes: