Skip to content

Commit 548c75d

Browse files
committed
Create phpunit.xml
1 parent 1d7ce22 commit 548c75d

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

phpunit.xml

+21
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)