phpunit.xml 582 B

1234567891011121314
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="test/bootstrap.php" colors="true" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
  3. <testsuites>
  4. <testsuite name="Php Library Test Suite">
  5. <directory>test</directory>
  6. </testsuite>
  7. </testsuites>
  8. <coverage/>
  9. <source>
  10. <include>
  11. <directory suffix=".php">src</directory>
  12. </include>
  13. </source>
  14. </phpunit>