aboutsummaryrefslogtreecommitdiffstats
path: root/phpunit.xml.all
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2011-01-12 02:22:37 +0100
committerIgor Wiedler <igor@wiedler.ch>2011-01-12 02:22:37 +0100
commit42cf9a9895bf36ee6a0a1821aefd6e567b251552 (patch)
tree2fcbc3953f6f11b3fbab844b093fcb71393dc9ed /phpunit.xml.all
parente00c5544d260741c6639d9a005ea933888ee8317 (diff)
downloadforums-42cf9a9895bf36ee6a0a1821aefd6e567b251552.tar
forums-42cf9a9895bf36ee6a0a1821aefd6e567b251552.tar.gz
forums-42cf9a9895bf36ee6a0a1821aefd6e567b251552.tar.bz2
forums-42cf9a9895bf36ee6a0a1821aefd6e567b251552.tar.xz
forums-42cf9a9895bf36ee6a0a1821aefd6e567b251552.zip
[ticket/9990] Add docs for running slow tests
PHPBB3-9990
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>