-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path_pkgdown.yml
More file actions
106 lines (101 loc) · 2.67 KB
/
Copy path_pkgdown.yml
File metadata and controls
106 lines (101 loc) · 2.67 KB
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
url: https://jakubsob.github.io/muttest/
template:
bootstrap: 5
light-switch: true
bslib:
bg: '#ffffff'
fg: '#000000'
primary: '#886868'
secondary: '#F77669'
includes:
in_header: |
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-N7MW34VJS3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-N7MW34VJS3');
</script>
navbar:
structure:
left: [intro, articles, reference, news]
components:
articles:
text: Articles
menu:
- text: Getting Started
href: articles/getting-started.html
- text: What is Mutation Testing?
href: articles/mutation-testing-101.html
- text: Mutator Reference
href: articles/mutators.html
- text: Reading Results
href: articles/interpreting-results.html
- text: CI Integration
href: articles/ci-integration.html
articles:
- title: Start here
navbar: Start here
contents:
- getting-started
- mutation-testing-101
- interpreting-results
- title: Reference
navbar: Reference
contents:
- mutators
- ci-integration
reference:
- title: Core
desc: Run mutation tests and define test plans.
contents:
- muttest
- muttest_plan
- title: Mutators
desc: Individual mutators — each defines one kind of code change.
contents:
- Mutator
- operator
- boolean_literal
- na_literal
- call_name
- string_empty
- string_fill
- numeric_increment
- numeric_decrement
- index_increment
- index_decrement
- negate_condition
- remove_condition_negation
- remove_negation
- replace_return_value
- delete_statement
- title: Mutator presets
desc: Ready-made collections of related mutators for common bug categories.
contents:
- arithmetic_operators
- comparison_operators
- logical_operators
- boolean_literals
- na_literals
- numeric_literals
- index_mutations
- string_literals
- condition_mutations
- title: Reporters
desc: Control how results are displayed.
contents:
- MutationReporter
- ProgressMutationReporter
- default_reporter
- title: Strategies
desc: Control how tests are run and source files are copied.
contents:
- TestStrategy
- FileTestStrategy
- FullTestStrategy
- CopyStrategy
- PackageCopyStrategy
- default_test_strategy
- default_copy_strategy