PhpUnit.xml
<?xml version="1.0"?>
<phpunit
bootstrap="../../../Build/BuildEssentials/PhpUnit/UnitTestBootstrap.php"
beStrictAboutChangesToGlobalState="true"
beStrictAboutTestsThatDoNotTestAnything="true"
checkForUnintentionallyCoveredCode="true"
beStrictAboutOutputDuringTests="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
timeoutForSmallTests="0">
<testsuites>
<testsuite name="All tests">
<directory>../../../Packages/Application/SimplyAdmire.CrowdConnector/Tests/Unit</directory>
<exclude>../../../Packages/Libraries</exclude>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="false">
<directory>../../../Packages/*/*/Classes</directory>
</whitelist>
</filter>
<logging>
<log type="junit" target="./Reports/UnitTests.xml" logIncompleteSkipped="false"/>
</logging>
</phpunit>