<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
         backupStaticAttributes="false"
         bootstrap="vendor/autoload.php"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
         stopOnFailure="false">
    <testsuites>
        <testsuite name="Application Test Suite">
            <directory suffix=".php">./tests</directory>
        </testsuite>
    </testsuites>
    <filter>
    <blacklist>
        <file>./src/EmailDomainFacade.php</file>
        <file>./src/EmailDomainServiceProvider.php</file>
        <file>./src/lang/en/validation.php</file>
    </blacklist>
    <whitelist>
        <directory suffeix=".php">./src</directory>
        <exclude>
            <file>./src/EmailDomainFacade.php</file>
            <file>./src/EmailDomainServiceProvider.php</file>
            <file>./src/lang/en/validation.php</file>
        </exclude>
    </whitelist>
</filter>
</phpunit>