💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 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`