1234567891011121314151617181920212223242526 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
- <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.1/phpunit.xsd"
- colors="true"
- bootstrap="./framework/bootstrap.php"
- >
- <testsuite name="Migration tool Unit Tests">
- <directory suffix="Test.php">testsuite</directory>
- </testsuite>
- <!--
- <filter>
- <whitelist addUncoveredFilesFromWhiteList="true">
- <directory suffix="php">../../src/Migration/</directory>
- </whitelist>
- </filter>
- <logging>
- <log type="coverage-html" target="tmp/coverage" charset="UTF-8" yui="true" highlight="true"/>
- </logging>
- -->
- </phpunit>
|