AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
# C.6 CoverageSetupTask The CoverageSetupTask prepares a database which can be used to gather code coverage information for unit tests. Table C.7:聽Attributes NameTypeDescriptionDefaultRequired`database``String`The location for the coverage database.coverage.dbYes C.6.1 Example ``` <coverage-setup database="./reports/coverage.db"> <fileset dir="classes"> <include name="**/*.php"/> </fileset> </coverage-setup> <phpunit codecoverage="true"> <batchtest> <fileset dir="src"> <include name="*Test.php"/> </fileset> </batchtest> </phpunit> ``` C.6.2 Supported Nested Tags - `classpath` - `fileset` - `filelist`