1<phpunit 2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.5/phpunit.xsd" 4 bootstrap="vendor/autoload.php" 5 colors="true" 6 forceCoversAnnotation="true" 7> 8 <testsuites> 9 <testsuite name="Unit tests"> 10 <directory>tests/app</directory> 11 </testsuite> 12 <testsuite name="Feature tests"> 13 <directory>tests/feature</directory> 14 </testsuite> 15 </testsuites> 16 <filter> 17 <whitelist> 18 <directory suffix=".php">app</directory> 19 </whitelist> 20 </filter> 21</phpunit> 22