Files
Theatrical-Players-Refactor…/php/phpunit.xml
Colin DeCarlo eadf7f1586 Add a phpunit.xml file
- whitelist for code coverage
- point to composer autoloader as the bootstrap file
2020-02-09 11:20:21 -05:00

19 lines
548 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
verbose="true">
<testsuites>
<testsuite name="unit">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
</phpunit>