1234567891011121314151617181920212223242526272829 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- /**
- * Default test suites declaration: run verification of coding standards and code integrity test suites
- *
- * 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"
- >
- <testsuites>
- <testsuite name="PHP Coding Standard Verification">
- <file>testsuite/Migration/Php/LiveCodeTest.php</file>
- </testsuite>
- <!--<testsuite name="Code Integrity Tests">-->
- <!--<directory>testsuite/Magento/Test/Integrity</directory>-->
- <!--</testsuite>-->
- </testsuites>
- <php>
- <ini name="date.timezone" value="America/Los_Angeles"/>
- <!-- TESTS_JSHINT_PATH specify the path to wsh.js on Windows and jshint-rhino.js on Linux -->
- <!-- TESTS_COMPOSER_PATH - specify the path to composer binary, if a relative reference cannot be resolved -->
- <!--<const name="TESTS_COMPOSER_PATH" value="/usr/local/bin/composer"/>-->
- </php>
- </phpunit>
|