code-intelligence.com/cifuzz@v0.40.0/examples/gradle/README.md (about) 1 # cifuzz Gradle example 2 3 This is a simple Gradle based project, already configured with 4 **cifuzz**. It should quickly produce a finding, but slow enough to 5 see the progress of the fuzzer. 6 7 To start make sure you installed **cifuzz** according to the 8 main [README](../../README.md). 9 10 You can start fuzzing with 11 12 ```bash 13 cifuzz run com.example.FuzzTestCase 14 ``` 15 16 ## Coverage 17 18 cifuzz can generate Java coverage reports using 19 [jacoco](https://www.jacoco.org). This example is configured to use both HTML 20 and XML (e.g. for IDE support) as output formats. 21 22 Run the coverage command after your cifuzz run: 23 24 ```bash 25 cifuzz coverage com.example.FuzzTestCase 26 ```