We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d7ce22 commit 548c75dCopy full SHA for 548c75d
phpunit.xml
@@ -0,0 +1,21 @@
1
+<phpunit bootstrap="./tests/bootstrap.php"
2
+ colors="true"
3
+ backupGlobals="false"
4
+ backupStaticAttributes="false"
5
+ convertErrorsToExceptions="true"
6
+ convertNoticesToExceptions="true"
7
+ convertWarningsToExceptions="true"
8
+ processIsolation="false"
9
+ stopOnFailure="true"
10
+ syntaxCheck="false">
11
+ <testsuites>
12
+ <testsuite>
13
+ <directory>tests</directory>
14
+ </testsuite>
15
+ </testsuites>
16
+ <filter>
17
+ <whitelist>
18
+ <directory suffix=".php">src</directory>
19
+ </whitelist>
20
+ </filter>
21
+</phpunit>
0 commit comments