Skip to content

Commit

Permalink
add testing config
Browse files Browse the repository at this point in the history
  • Loading branch information
miken32 committed Oct 18, 2023
1 parent 1b78ce6 commit 9361f43
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
cacheResult="false"
colors="true"
stopOnDefect="true"
testdox="true"
>
<testsuites>
<testsuite name="Unit">
<directory>./tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory>./tests/Feature</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit 9361f43

Please sign in to comment.