aboutsummaryrefslogtreecommitdiffstats
path: root/phpunit.xml.all
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2011-01-12 02:59:32 +0100
committerNils Adermann <naderman@naderman.de>2011-01-12 02:59:32 +0100
commit1359cf654714107f752d14a358d76ee310a9ff57 (patch)
treee7ea7b2958fcebafbc8ea0a0267e4db1627dc524 /phpunit.xml.all
parentc9b9016ca8fb83d57d7bfaeb9cc9772a722fa458 (diff)
parent42cf9a9895bf36ee6a0a1821aefd6e567b251552 (diff)
downloadforums-1359cf654714107f752d14a358d76ee310a9ff57.tar
forums-1359cf654714107f752d14a358d76ee310a9ff57.tar.gz
forums-1359cf654714107f752d14a358d76ee310a9ff57.tar.bz2
forums-1359cf654714107f752d14a358d76ee310a9ff57.tar.xz
forums-1359cf654714107f752d14a358d76ee310a9ff57.zip
Merge branch 'ticket/igorw/9990' into develop-olympus
* ticket/igorw/9990: [ticket/9990] Add docs for running slow tests [ticket/9990] Integrate utf normalizer tests into test suite
Diffstat (limited to 'phpunit.xml.all')
-rw-r--r--phpunit.xml.all25
1 files changed, 25 insertions, 0 deletions
diff --git a/phpunit.xml.all b/phpunit.xml.all
new file mode 100644
index 0000000000..1be2830729
--- /dev/null
+++ b/phpunit.xml.all
@@ -0,0 +1,25 @@
+<?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>
+
+ <filter>
+ <blacklist>
+ <directory>./tests/</directory>
+ </blacklist>
+ </filter>
+</phpunit>