forked from robolectric/robolectric.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
161 lines (152 loc) · 4.52 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
site_name: Robolectric
site_description: "test-drive your Android code"
site_url: "https://robolectric.org"
copyright: "©2010-2025. All rights reserved."
repo_url: "https://github.com/robolectric/robolectric"
repo_name: Robolectric
strict: true
edit_uri: https://github.com/robolectric/robolectric.github.io/tree/master/docs
theme:
name: material
favicon: images/favicon.ico
logo: images/robolectric-stacked.png
icon:
repo: fontawesome/brands/github
custom_dir: overrides
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: "Switch to light mode"
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
toggle:
icon: material/weather-night
name: "Switch to dark mode"
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
toggle:
icon: material/weather-sunny
name: "Switch to light mode"
features:
- content.action.view
- content.code.copy
- content.tabs.link
- content.tooltips
- navigation.indexes
- navigation.sections
- navigation.tabs
- navigation.top
extra_css:
- stylesheets/extra.css
markdown_extensions:
- admonition
- attr_list
- github-callouts
- md_in_html
- pymdownx.blocks.tab:
alternate_style: true
combine_header_slug: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets:
url_download: true
- pymdownx.superfences
plugins:
- blog:
categories: false
post_excerpt_max_authors: 5
- macros:
on_error_fail: true
on_undefined: strict
- redirects:
redirect_maps:
"activity-lifecycle.md": "androidx_test.md"
"custom-shadows.md": "extending.md"
"errorprone-refactorings.md": "automated-migration.md"
"migrating.md": "automated-migration.md"
"other-environments.md": "getting-started.md"
- search:
extra:
analytics:
provider: google
property: "UA-19269905-2"
robolectric:
version:
current: "4.14"
social:
- name: "GitHub Project"
icon: fontawesome/brands/github
link: "https://github.com/robolectric/robolectric"
- name: "[email protected]"
icon: fontawesome/regular/envelope
link: "https://groups.google.com/group/robolectric"
- name: "@Robolectric"
icon: fontawesome/brands/x-twitter
link: "https://x.com/robolectric"
nav:
- "Home": index.md
- "Setup":
- "Getting Started": getting-started.md
- "Writing Your First Test": writing-a-test.md
- "User Guide":
- "AndroidX Test": androidx_test.md
- "Configuring Robolectric": configuring.md
- "Device Configuration": device-configuration.md
- "Using Qualified Resources": using-qualifiers.md
- "Using Add-On Modules": using-add-on-modules.md
- "Best Practices & Limitations": best-practices.md
- "Customizing":
- "Build System Integration": build-system-integration.md
- "Customizing the Test Runner": custom-test-runner.md
- "Contributing":
- "Building Robolectric": building-robolectric.md
- "Robolectric Architecture": architecture.md
- "Contributor Guidelines": contributing.md
- "Shadows": extending.md
- "Resources":
- "Automated Migration": automated-migration.md
- "Upgrade to Robolectric 4.x": upgrade_to_version_4.md
- "Upgrade to Robolectric 3.x": upgrade_to_version_3.md
- "Javadoc":
- "4.14": /javadoc/4.14/
- "4.13": /javadoc/4.13/
- "4.12": /javadoc/4.12/
- "4.11": /javadoc/4.11/
- "4.10": /javadoc/4.10/
- "4.9": /javadoc/4.9/
- "4.8": /javadoc/4.8/
- "4.7": /javadoc/4.7/
- "4.6": /javadoc/4.6/
- "4.5": /javadoc/4.5/
- "4.4": /javadoc/4.4/
- "4.3": /javadoc/4.3/
- "4.2": /javadoc/4.2/
- "4.1": /javadoc/4.1/
- "4.0": /javadoc/4.0/
- "":
- "GitHub": https://github.com/robolectric/robolectric/
- "Releases": https://github.com/robolectric/robolectric/releases/
- "Issues": https://github.com/robolectric/robolectric/issues/
- "Blog":
- blog/index.md
exclude_docs: |
/javadoc/*/legal/jquery*.md
validation:
links:
anchors: warn
absolute_links: warn
unrecognized_links: warn
watch:
- overrides