Does the --code-coverage-report-path parameter refer to the coverage report of a single file (e.g., as specified in --test-file-path), or does it refer to the coverage report at the module/project level?
If it's the module/project level report, the coverage increase for a single test might be very small. If it's the report for a single file, does the --test-command generate the coverage report only for that specific file?
From my understanding, the command ./gradlew clean test jacocoTestReport generates the coverage report at the module or project level. Is my understanding correct?
Hello, I would like to inquire about the parsing of parameters passed when calling
cover-agent
.Does the
--code-coverage-report-path
parameter refer to the coverage report of a single file (e.g., as specified in--test-file-path
), or does it refer to the coverage report at the module/project level?--test-command
generate the coverage report only for that specific file?From my understanding, the command
./gradlew clean test jacocoTestReport
generates the coverage report at the module or project level. Is my understanding correct?