Files
sterivein/phpunit.xml
Manuel Raynaud 3b08bad735 fix propel version in composer file and exclude some directory in
phpunit code-coverage parameter
2013-02-16 09:25:22 +01:00

28 lines
780 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit
colors="true"
convertErrorsToExceptions= "true"
convertNoticesToExceptions= "true"
convertWarningsToExceptions= "true"
bootstrap="core/lib/Thelia/Tests/bootstrap.php"
verbose="true"
backupGlobals="false"
>
<testsuites>
<testsuite name="Thelia">
<directory>core/lib/Thelia/Tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>core/lib</directory>
<exclude>
<directory>core/lib/Thelia/Model/map</directory>
<directory>core/lib/Thelia/Model/om</directory>
<directory>core/lib/Thelia/Tests</directory>
</exclude>
</whitelist>
</filter>
</phpunit>