File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,8 @@ struct AnnotatedItem
104
104
105
105
` items ` here contains an ` AnnotatedItem ` for every item in the
106
106
target crate that has one of the attributes declared in ` attributes `
107
- along with attributes sharing the name of the framework (` test ` , here).
107
+ along with attributes sharing the name of the framework (` test ` , here --
108
+ the function must be named either ` test ` or ` bench ` ).
108
109
109
110
The annotated function _ must_ be named "test" for a test framework and
110
111
"bench" for a bench framework. We currently do not support
@@ -184,12 +185,10 @@ under a new `[[testing.frameworks]]` section in their
184
185
185
186
``` toml
186
187
[[testing .frameworks ]]
187
- provider = { rust-fuzz = " 1.0" }
188
+ provider = { quickcheck = " 1.0" }
188
189
```
189
190
190
- This pulls in the framework named "fuzz", which uses the
191
- implementation provided by the ` rust-fuzz ` crate. When run, it will be
192
- applied to all files in the ` fuzz ` directory. By default, the following
191
+ This pulls in the framework from the "quickcheck" crate. By default, the following
193
192
framework is defined:
194
193
195
194
``` toml
You can’t perform that action at this time.
0 commit comments