We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7709fed commit 8a454c1Copy full SHA for 8a454c1
phpunit.xml
@@ -0,0 +1,26 @@
1
+<phpunit backupGlobals="false"
2
+ backupStaticAttributes="false"
3
+ colors="true"
4
+ convertErrorsToExceptions="true"
5
+ convertNoticesToExceptions="true"
6
+ convertWarningsToExceptions="true"
7
+ processIsolation="false"
8
+ stopOnFailure="false"
9
+ syntaxCheck="false">
10
+ <php>
11
+ <!--Path to the autoload file that should be used. Use a composer autoloader by default-->
12
+ <const name="AUTOLOAD_PATH" value="./vendor/autoload.php"/>
13
+ </php>
14
+
15
+ <testsuites>
16
+ <testsuite name="Unit Tests">
17
+ <directory>./tests/unit</directory>
18
+ </testsuite>
19
+ </testsuites>
20
21
+ <filter>
22
+ <whitelist>
23
+ <directory>./src/</directory>
24
+ </whitelist>
25
+ </filter>
26
+</phpunit>
0 commit comments