| <?xml version="1.0" encoding="UTF-8"?>
<phpunit 
	backupGlobals="false"
    backupStaticAttributes="false"
    beStrictAboutTestsThatDoNotTestAnything="true"
    beStrictAboutChangesToGlobalState="true"
    beStrictAboutOutputDuringTests="true"
    colors="true"
    convertErrorsToExceptions="true"
    convertNoticesToExceptions="true"
    convertWarningsToExceptions="true"
    processIsolation="false"
    stopOnFailure="false"
	bootstrap="vendor/autoload.php">
	
    <testsuites>
        <testsuite name="Stringizer Tests">
           <directory>./tests/</directory>
        </testsuite>
    </testsuites>
  
    <filter>
       <whitelist processUncoveredFilesFromWhitelist="true">
         <directory>./src/</directory>
       </whitelist>
    </filter>
  
    <logging>
      <log type="coverage-clover" target="build/logs/clover.xml"/>
    </logging>
  
</phpunit>
 |