fix test
Some checks failed
/ test (push) Successful in 1s
Unit Testing / phpunit (push) Failing after 0s
Unit Testing / phpunit (pull_request) Failing after 0s

This commit is contained in:
André Menrath 2024-09-20 20:18:57 +02:00
parent 161e4fced4
commit b0f01cfaf5

16
phpunit.xml.dist Normal file
View file

@ -0,0 +1,16 @@
<?xml version="1.0"?>
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="testing">
<directory prefix="test-" suffix=".php">./tests/</directory>
<exclude>./tests/test-sample.php</exclude>
</testsuite>
</testsuites>
</phpunit>