Skip to content

Commit 1a3edd9

Browse files
committed
Add PHPUnit configuration file for unit testing setup
1 parent d8d76a3 commit 1a3edd9

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

phpunit.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.0/phpunit.xsd"
4+
colors="true"
5+
executionOrder="default"
6+
cacheResult="false">
7+
<testsuites>
8+
<testsuite name="Unit">
9+
<directory>tests</directory>
10+
</testsuite>
11+
</testsuites>
12+
</phpunit>

0 commit comments

Comments
 (0)