Skip to content

Commit 8a454c1

Browse files
Added missing phpunit.xml
1 parent 7709fed commit 8a454c1

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

phpunit.xml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)