ffmpeg-mappable-media/phpunit.xml.dist

34 lines
981 B
Text
Raw Normal View History

2012-04-13 10:20:54 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
verbose="false"
2013-06-25 10:03:20 +02:00
bootstrap="tests/bootstrap.php"
2012-04-13 10:20:54 +02:00
>
<php>
<env name="SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT" value="true"/>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled" />
</php>
2012-04-13 10:20:54 +02:00
<testsuites>
<testsuite name="unit">
<directory>tests/Unit</directory>
</testsuite>
<testsuite name="functional">
<directory>tests/Functional</directory>
2012-04-13 10:20:54 +02:00
</testsuite>
</testsuites>
2012-04-13 10:20:54 +02:00
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/</directory>
</whitelist>
2012-04-13 10:20:54 +02:00
</filter>
</phpunit>