We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3af52c5 commit 242e48fCopy full SHA for 242e48f
phpunit.xml
@@ -0,0 +1,25 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+
3
+<phpunit backupGlobals="false"
4
+ strict="true"
5
+ backupStaticAttributes="false"
6
+ convertErrorsToExceptions="true"
7
+ convertNoticesToExceptions="true"
8
+ convertWarningsToExceptions="true"
9
+ processIsolation="false"
10
+ stopOnFailure="false"
11
+ bootstrap="vendor/autoload.php"
12
+ syntaxCheck="false">
13
14
+ <testsuites>
15
+ <testsuite name="Unit Tests">
16
+ <directory>tests/</directory>
17
+ </testsuite>
18
+ </testsuites>
19
20
+ <filter>
21
+ <whitelist>
22
+ <directory suffix=".php">src/</directory>
23
+ </whitelist>
24
+ </filter>
25
+</phpunit>
0 commit comments