phpunit.ee.xml.dist 701 B

1234567891011121314151617181920212223
  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/4.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. <php>
  17. <const name="FIXTURE_PREFIX" value="ee."/>
  18. </php>
  19. <!-- Test listeners -->
  20. <listeners>
  21. <listener class="Migration\TestFramework\Listener"/>
  22. </listeners>
  23. </phpunit>