summaryrefslogtreecommitdiff
path: root/phpunit.xml.dist
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2020-12-21 16:11:17 +0100
committerDaniel Weipert <code@drogueronin.de>2020-12-21 16:11:17 +0100
commit0d1da4356173e926fdcac42462daa4fcb7617109 (patch)
tree79535a3dca38b60c1ca93ff351c00e1464b0536b /phpunit.xml.dist
Initial commit
Diffstat (limited to 'phpunit.xml.dist')
-rw-r--r--phpunit.xml.dist15
1 files changed, 15 insertions, 0 deletions
diff --git a/phpunit.xml.dist b/phpunit.xml.dist
new file mode 100644
index 0000000..1e0d42c
--- /dev/null
+++ b/phpunit.xml.dist
@@ -0,0 +1,15 @@
+<?xml version="1.0"?>
+<phpunit
+ bootstrap="tests/bootstrap.php"
+ backupGlobals="false"
+ colors="true"
+ convertErrorsToExceptions="true"
+ convertNoticesToExceptions="true"
+ convertWarningsToExceptions="true"
+ >
+ <testsuites>
+ <testsuite name="WP Tests">
+ <directory prefix="test-" suffix=".php">./tests/</directory>
+ </testsuite>
+ </testsuites>
+</phpunit>