phpunit.xml.dist 629 B

1234567891011121314151617181920
  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 Integration Tests">
  14. <directory suffix="Test.php">testsuite</directory>
  15. </testsuite>
  16. <!-- Test listeners -->
  17. <listeners>
  18. <listener class="Migration\TestFramework\Listener"/>
  19. </listeners>
  20. </phpunit>