2011-01-03 22:21:54 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<phpunit backupGlobals="true"
|
2016-07-24 17:17:41 +02:00
|
|
|
backupStaticAttributes="false"
|
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"
|
|
|
|
bootstrap="tests/bootstrap.php"
|
|
|
|
>
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="phpBB Test Suite">
|
2014-05-03 03:36:01 +02:00
|
|
|
<directory suffix="_test.php">./tests</directory>
|
2012-04-21 04:37:57 -05:00
|
|
|
<exclude>./tests/functional</exclude>
|
2014-05-03 10:28:15 +02:00
|
|
|
<exclude>./tests/lint_test.php</exclude>
|
2013-07-12 14:42:26 -04:00
|
|
|
</testsuite>
|
2012-04-21 04:37:57 -05:00
|
|
|
<testsuite name="phpBB Functional Tests">
|
2014-05-09 11:22:58 +02:00
|
|
|
<directory suffix="_test.php">./tests/functional</directory>
|
2011-01-03 22:21:54 +01:00
|
|
|
</testsuite>
|
2013-07-12 14:42:26 -04:00
|
|
|
<testsuite name="phpBB Lint Test">
|
2014-05-03 10:28:15 +02:00
|
|
|
<file>./tests/lint_test.php</file>
|
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>
|
2011-08-07 19:18:52 -04:00
|
|
|
<whitelist>
|
|
|
|
<directory suffix=".php">./phpBB/includes/</directory>
|
2013-07-14 01:32:34 -04:00
|
|
|
<directory suffix=".php">./phpBB/phpbb/</directory>
|
2011-08-07 19:18:52 -04:00
|
|
|
</whitelist>
|
2011-01-03 22:21:54 +01:00
|
|
|
</filter>
|
|
|
|
</phpunit>
|