phpunit.xml.dist 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. /**
  4. * Default test suites declaration: run verification of coding standards and code integrity test suites
  5. *
  6. * Copyright © Magento, Inc. All rights reserved.
  7. * See COPYING.txt for license details.
  8. */
  9. -->
  10. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  11. xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.1/phpunit.xsd"
  12. colors="true"
  13. bootstrap="./framework/bootstrap.php"
  14. >
  15. <testsuites>
  16. <testsuite name="PHP Coding Standard Verification">
  17. <file>testsuite/Migration/Php/LiveCodeTest.php</file>
  18. </testsuite>
  19. <!--<testsuite name="Code Integrity Tests">-->
  20. <!--<directory>testsuite/Magento/Test/Integrity</directory>-->
  21. <!--</testsuite>-->
  22. </testsuites>
  23. <php>
  24. <ini name="date.timezone" value="America/Los_Angeles"/>
  25. <!-- TESTS_JSHINT_PATH specify the path to wsh.js on Windows and jshint-rhino.js on Linux -->
  26. <!-- TESTS_COMPOSER_PATH - specify the path to composer binary, if a relative reference cannot be resolved -->
  27. <!--<const name="TESTS_COMPOSER_PATH" value="/usr/local/bin/composer"/>-->
  28. </php>
  29. </phpunit>