phpunit.xml.dist 815 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  9. xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.1/phpunit.xsd"
  10. colors="true"
  11. bootstrap="./framework/bootstrap.php"
  12. >
  13. <testsuite name="Migration tool Unit Tests">
  14. <directory suffix="Test.php">testsuite</directory>
  15. </testsuite>
  16. <!--
  17. <filter>
  18. <whitelist addUncoveredFilesFromWhiteList="true">
  19. <directory suffix="php">../../src/Migration/</directory>
  20. </whitelist>
  21. </filter>
  22. <logging>
  23. <log type="coverage-html" target="tmp/coverage" charset="UTF-8" yui="true" highlight="true"/>
  24. </logging>
  25. -->
  26. </phpunit>