Skip to content

Commit faa8b2b

Browse files
committed
Added Unit Test (phpunit.xml)
1 parent a319b9e commit faa8b2b

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

phpunit.xml.dist

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0"?>
2+
<!--
3+
To change this license header, choose License Headers in Project Properties.
4+
To change this template file, choose Tools | Templates
5+
and open the template in the editor.
6+
-->
7+
8+
<!-- see http://www.phpunit.de/wiki/Documentation -->
9+
<phpunit bootstrap="./vendor/autoload.php"
10+
colors="false"
11+
convertErrorsToExceptions="true"
12+
convertNoticesToExceptions="true"
13+
convertWarningsToExceptions="true"
14+
stopOnFailure="false">
15+
16+
<filter>
17+
<whitelist>
18+
<directory>./src</directory>
19+
</whitelist>
20+
</filter>
21+
22+
<testsuites>
23+
<testsuite name="Test Suite">
24+
<directory>./tests/</directory>
25+
</testsuite>
26+
</testsuites>
27+
28+
</phpunit>

0 commit comments

Comments
 (0)