forked from FakeItEasy/FakeItEasy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
94 lines (86 loc) · 2.92 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
site_name: FakeItEasy
site_dir: artifacts/docs
repo_url: https://github.com/FakeItEasy/FakeItEasy
extra_css: [css/fakeiteasy.css]
extra:
version:
provider: mike
theme:
name: material
favicon: img/favicon.ico
logo: img/icon.svg
features:
- navigation.footer
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
plugins:
- mike:
canonical_version: null
css_dir: css
javascript_dir: js
version_selector: true
- search
markdown_extensions:
- footnotes
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.snippets:
base_path: !ENV [SNIPPETS_REPO_ROOT, '.']
check_paths: true
dedent_subsections: true
- pymdownx.superfences
- pymdownx.tilde
nav:
- FakeItEasy: index.md
- Quickstart: quickstart.md
- Creating Fakes:
- Creating Fakes: creating-fakes.md
- What can be faked: what-can-be-faked.md
- Default fake behavior: default-fake-behavior.md
- How to fake internal (Friend in VB) types: how-to-fake-internal-types.md
- Specifying Fakes’ Behavior:
- Specifying a Call to Configure: specifying-a-call-to-configure.md
- Specifying Return Values: specifying-return-values.md
- Throwing Exceptions: throwing-exceptions.md
- Doing Nothing: doing-nothing.md
- Assigning out and ref parameters: assigning-out-and-ref-parameters.md
- Invoking Custom Code: invoking-custom-code.md
- Calling base methods: calling-base-methods.md
- Calling wrapped methods: calling-wrapped-methods.md
- Changing behavior between calls: changing-behavior-between-calls.md
- Argument constraints: argument-constraints.md
- Assertion:
- Assertion: assertion.md
- Ordered assertions: ordered-assertions.md
- Faking async methods: faking-async-methods.md
- Raising events: raising-events.md
- Strict fakes: strict-fakes.md
- Dummies:
- Dummies: dummies.md
- Custom Dummy Creation: custom-dummy-creation.md
- Implicit Creation Options: implicit-creation-options.md
- Formatting Argument Values: formatting-argument-values.md
- Custom Argument Equality: custom-argument-equality.md
- Scanning for Extension Points: scanning-for-extension-points.md
- Bootstrapper: bootstrapper.md
- Advanced usage: advanced-usage.md
- Analyzer Packages: https://fakeiteasy.github.io/docs/analyzers/
- Recipes:
- Faking HttpClient: Recipes/faking-http-client.md
- Platform support: platform-support.md
- Source Stepping: source-stepping.md
- Why was FakeItEasy created?: why-was-fakeiteasy-created.md
- External Resources: external-resources.md