This repository has been archived on 2025-09-29. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
drupalcampbristol/2019/phpunit.xml.dist

15 lines
534 B
Text
Raw Normal View History

2019-05-20 22:28:12 +01:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
2019-05-22 12:28:27 +01:00
stopOnFailure="true"
verbose="true">
2019-05-20 22:28:12 +01:00
<testsuites>
<testsuite name="Bundles">
<directory suffix="Test.php">src/Speakers/tests</directory>
2019-05-20 22:28:12 +01:00
<directory suffix="Test.php">src/Sponsors/tests</directory>
2019-05-20 22:28:12 +01:00
</testsuite>
</testsuites>
2019-05-20 22:28:12 +01:00
</phpunit>