Skip to content
Snippets Groups Projects
phpunit.xml.dist 375 B
Newer Older
  • Learn to ignore specific revisions
  • Josh Pollock's avatar
    Josh Pollock committed
    <phpunit
    	bootstrap="Tests/bootstrap.php"
    	backupGlobals="false"
    	colors="true"
    	convertErrorsToExceptions="true"
    	convertNoticesToExceptions="true"
    	convertWarningsToExceptions="true"
    	>
    	<testsuites>
    		<testsuite  name="unit" suffix=".php">
    			<directory>./Tests/Unit</directory>
    		</testsuite>
    
    	</testsuites>
    	<log type="coverage-clover" target="clover.xml"/>
    </phpunit>