diff options
author | Igor Wiedler <igor@wiedler.ch> | 2011-08-21 19:26:15 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2011-10-14 17:20:53 +0200 |
commit | 637d8eabe76907ce4a1e810d8b6bd964acb1b303 (patch) | |
tree | 63b82f29cb73a609987185ca026c6174e2068b27 /phpunit.xml.functional | |
parent | 37d9e7e30c3edbd14bb4e0f098ce676f1d7fe07b (diff) | |
download | forums-637d8eabe76907ce4a1e810d8b6bd964acb1b303.tar forums-637d8eabe76907ce4a1e810d8b6bd964acb1b303.tar.gz forums-637d8eabe76907ce4a1e810d8b6bd964acb1b303.tar.bz2 forums-637d8eabe76907ce4a1e810d8b6bd964acb1b303.tar.xz forums-637d8eabe76907ce4a1e810d8b6bd964acb1b303.zip |
[feature/functional-tests] Implementing functional test framework with goutte
PHPBB3-10414
Diffstat (limited to 'phpunit.xml.functional')
-rw-r--r-- | phpunit.xml.functional | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/phpunit.xml.functional b/phpunit.xml.functional new file mode 100644 index 0000000000..9facbcff8b --- /dev/null +++ b/phpunit.xml.functional @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<phpunit backupGlobals="true" + backupStaticAttributes="true" + colors="true" + convertErrorsToExceptions="true" + convertNoticesToExceptions="true" + convertWarningsToExceptions="true" + processIsolation="false" + stopOnFailure="false" + syntaxCheck="false" + bootstrap="tests/bootstrap.php" +> + <testsuites> + <testsuite name="phpBB Test Suite"> + <directory suffix="_test.php">./tests/</directory> + </testsuite> + </testsuites> + + <groups> + <include> + <group>functional</group> + </include> + </groups> + + <filter> + <blacklist> + <directory>./tests/</directory> + </blacklist> + <whitelist> + <directory suffix=".php">./phpBB/includes/</directory> + <exclude> + <file>./phpBB/includes/db/firebird.php</file> + <file>./phpBB/includes/db/mysql.php</file> + <file>./phpBB/includes/db/mysqli.php</file> + <file>./phpBB/includes/db/mssql.php</file> + <file>./phpBB/includes/db/mssql_odbc.php</file> + <file>./phpBB/includes/db/mssqlnative.php</file> + <file>./phpBB/includes/db/oracle.php</file> + <file>./phpBB/includes/db/postgres.php</file> + <file>./phpBB/includes/db/sqlite.php</file> + <file>./phpBB/includes/search/fulltext_native.php</file> + <file>./phpBB/includes/search/fulltext_mysql.php</file> + <directory suffix=".php">./phpBB/includes/captcha/</directory> + </exclude> + </whitelist> + </filter> +</phpunit> |