aboutsummaryrefslogtreecommitdiff
path: root/phpunit.xml.dist
diff options
context:
space:
mode:
Diffstat (limited to 'phpunit.xml.dist')
-rw-r--r--phpunit.xml.dist30
1 files changed, 12 insertions, 18 deletions
diff --git a/phpunit.xml.dist b/phpunit.xml.dist
index f591521..56bd7e0 100644
--- a/phpunit.xml.dist
+++ b/phpunit.xml.dist
@@ -1,20 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
-
-<phpunit backupGlobals="false"
- backupStaticAttributes="false"
- colors="true"
- convertErrorsToExceptions="true"
- convertNoticesToExceptions="true"
- convertWarningsToExceptions="true"
- convertDeprecationsToExceptions="true"
- processIsolation="false"
- stopOnFailure="false"
- bootstrap="./tests/bootstrap.php"
- >
-
- <testsuites>
- <testsuite name="Math Executor tests">
- <directory>./tests/</directory>
- </testsuite>
- </testsuites>
+<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ backupGlobals="false"
+ colors="true"
+ processIsolation="false"
+ stopOnFailure="false"
+ bootstrap="./tests/bootstrap.php"
+ xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd">
+ <testsuites>
+ <testsuite name="Math Executor tests">
+ <directory>./tests/</directory>
+ </testsuite>
+ </testsuites>
</phpunit>