phpunit.xml.dist 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0"?>
  2. <phpunit
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
  5. bootstrap="./vendor/autoload.php"
  6. colors="true"
  7. >
  8. <testsuites>
  9. <testsuite name="Core">
  10. <directory>./module/Core/test</directory>
  11. </testsuite>
  12. <testsuite name="Rest">
  13. <directory>./module/Rest/test</directory>
  14. </testsuite>
  15. <testsuite name="CLI">
  16. <directory>./module/CLI/test</directory>
  17. </testsuite>
  18. </testsuites>
  19. <coverage processUncoveredFiles="true">
  20. <include>
  21. <directory suffix=".php">./module/*/src</directory>
  22. </include>
  23. <exclude>
  24. <directory suffix=".php">./module/Core/src/Repository</directory>
  25. <directory suffix=".php">./module/Core/src/**/Repository</directory>
  26. <directory suffix=".php">./module/Core/src/**/**/Repository</directory>
  27. <directory suffix=".php">./module/Core/src/Spec</directory>
  28. <directory suffix=".php">./module/Core/src/**/Spec</directory>
  29. <directory suffix=".php">./module/Core/src/**/**/Spec</directory>
  30. </exclude>
  31. </coverage>
  32. </phpunit>