暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

phpunit.xml.dist 447B

1234567891011
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="./vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
  3. <coverage processUncoveredFiles="true">
  4. <include>
  5. <directory suffix=".php">lib</directory>
  6. </include>
  7. </coverage>
  8. <testsuite name="Tests">
  9. <directory suffix="Test.php">tests</directory>
  10. </testsuite>
  11. </phpunit>