activity-log/phpunit.xml

24 lines
497 B
XML
Raw Normal View History

2014-03-06 23:23:31 +00:00
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite>
<directory prefix="test-" suffix=".php">./tests/</directory>
</testsuite>
</testsuites>
2015-09-20 17:34:37 +03:00
<filter>
<whitelist>
<directory suffix=".php">./</directory>
<exclude>
<directory suffix=".php">tests</directory>
</exclude>
</whitelist>
</filter>
2014-03-06 23:23:31 +00:00
</phpunit>