phpunit.xml.dist
<?xml version="1.0"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.8/phpunit.xsd"
bootstrap="./Doctrineum/Tests/tests_bootstrap.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="true"
processIsolation="false"
backupGlobals="false"
colors="true"
>
<testsuite name="all">
<directory>./Doctrineum/Tests</directory>
</testsuite>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true" processUncoveredFilesFromWhitelist="false">
<directory>./Doctrineum/String</directory>
</whitelist>
</filter>
</phpunit>