Files
ezmigrationbundle/phpunit.xml
2016-08-23 18:17:15 +01:00

30 lines
1016 B
XML

<?xml version="1.0" encoding="UTF-8" ?>
<!-- some of the tests we execute do generate php warnings, sadly... we have to swallow them -->
<phpunit colors="true" bootstrap="Tests/bootstrap.php" convertNoticesToExceptions="false" convertWarningsToExceptions="false">
<php>
<server name="KERNEL_DIR" value="vendor/ezsystems/ezpublish-community/ezpublish" />
<server name="SYMFONY_ENV" value="behat" />
<server name="SYMFONY_DEBUG" value="false" />
</php>
<!-- code coverage reporting -->
<filter>
<whitelist>
<directory suffix=".php">./</directory>
<exclude>
<directory>./Resources</directory>
<directory>./Tests</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
<testsuites>
<testsuite name="Kaliop Bundle Migration Test Suite">
<directory>./Tests/phpunit/</directory>
</testsuite>
</testsuites>
</phpunit>