Skip to content

Commit 53a6ac5

Browse files
committed
Add phpunit.xml
1 parent 70ff635 commit 53a6ac5

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@
44
/.env
55
.DS_Store
66
.phpunit.result.cache
7-
phpunit.xml
87
composer.lock

phpunit.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit bootstrap="vendor/autoload.php"
3+
colors="true"
4+
verbose="true">
5+
<testsuites>
6+
<testsuite name="Unit Tests">
7+
<directory>./tests/Unit</directory>
8+
</testsuite>
9+
</testsuites>
10+
11+
<coverage>
12+
<include>
13+
<directory suffix=".php">./src</directory>
14+
</include>
15+
</coverage>
16+
17+
<php>
18+
<env name="APP_ENV" value="testing"/>
19+
</php>
20+
</phpunit>

0 commit comments

Comments
 (0)