2011-01-03 22:21:54 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<phpunit backupGlobals="true"
|
|
|
|
backupStaticAttributes="true"
|
2011-01-10 23:20:06 +01:00
|
|
|
colors="true"
|
2011-01-03 22:21:54 +01:00
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
syntaxCheck="false"
|
|
|
|
bootstrap="tests/bootstrap.php"
|
|
|
|
>
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="phpBB Test Suite">
|
2011-01-10 00:18:37 +01:00
|
|
|
<directory suffix="_test.php">./tests/</directory>
|
2011-01-03 22:21:54 +01:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
2011-01-10 23:20:06 +01:00
|
|
|
|
|
|
|
<groups>
|
|
|
|
<exclude>
|
|
|
|
<group>slow</group>
|
|
|
|
</exclude>
|
|
|
|
</groups>
|
|
|
|
|
2011-01-03 22:21:54 +01:00
|
|
|
<filter>
|
|
|
|
<blacklist>
|
|
|
|
<directory>./tests/</directory>
|
|
|
|
</blacklist>
|
|
|
|
</filter>
|
|
|
|
</phpunit>
|