Create phpunit.xml.dist

This commit is contained in:
Oliver Davies 2019-05-20 22:28:12 +01:00
parent 54e6e13a36
commit 1ea1dffbd5

13
phpunit.xml.dist Normal file
View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="true">
<testsuites>
<testsuite name="Bundles">
<directory suffix="Test.php">src/Speakers/tests</directory>
</testsuite>
</testsuites>
</phpunit>