Skip to content

Commit

Permalink
Add basic phpunit xml file
Browse files Browse the repository at this point in the history
  • Loading branch information
cmuench committed Nov 7, 2023
1 parent b77f346 commit 3fbba83
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true"
verbose="true"
stopOnFailure="false">
<testsuites>
<testsuite name="Unit Tests">
<directory>Test/Unit</directory>
</testsuite>
</testsuites>
<php>
<ini name="error_reporting" value="E_ALL"/>
<ini name="display_errors" value="1"/>
<ini name="display_startup_errors" value="1"/>
</php>
</phpunit>

0 comments on commit 3fbba83

Please sign in to comment.