Skip to content

Commit

Permalink
better docs
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-k-cameron committed Jul 6, 2023
1 parent 8d78bd4 commit 7d80faf
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,15 @@ fun FileManifest.printGeneratedFiles() {
* Setting `runClippy` to true can be helpful when debugging clippy failures, but
* should generally be set to `false` to avoid invalidating the Cargo cache between
* every unit test run.
* If you want to enable each features individually, specify the name of the feature on featuresToEnable.
* e.g.
* ```kotlin
* compileAndTest(featuresToEnable = ["this", "that"])
* ```
* All features are enabled by default. If you wish to disable them, set enableAllFeatures to False.
* ```kotlin
* compileAndTest(featuresToEnable = false)
* ```
*/
fun TestWriterDelegator.compileAndTest(
runClippy: Boolean = false,
Expand Down

0 comments on commit 7d80faf

Please sign in to comment.