Drupal investigation

phpunit.xml.dist 1.2KB

123456789101112131415161718192021222324252627282930
  1. <phpunit bootstrap="vendor/autoload.php" colors="true">
  2. <testsuites>
  3. <testsuite name="formatters">
  4. <directory prefix="test" suffix=".php">tests</directory>
  5. </testsuite>
  6. </testsuites>
  7. <logging>
  8. <!--
  9. <log type="coverage-html" target="build/logs/coverage" lowUpperBound="35"
  10. highLowerBound="70"/>
  11. -->
  12. <log type="coverage-clover" target="build/logs/clover.xml"/>
  13. </logging>
  14. <filter>
  15. <whitelist processUncoveredFilesFromWhitelist="true">
  16. <directory suffix=".php">src</directory>
  17. <exclude>
  18. <file suffix=".php">FormatterInterface.php.php</file>
  19. <file suffix=".php">OverrideRestructureInterface.php.php</file>
  20. <file suffix=".php">RestructureInterface.php.php</file>
  21. <file suffix=".php">ValidationInterface.php</file>
  22. <file suffix=".php">Formatters/RenderDataInterface.php</file>
  23. <file suffix=".php">StructuredData/ListDataInterface.php.php</file>
  24. <file suffix=".php">StructuredData/RenderCellInterface.php.php</file>
  25. <file suffix=".php">StructuredData/TableDataInterface.php.php</file>
  26. </exclude>
  27. </whitelist>
  28. </filter>
  29. </phpunit>