Skip to content
Snippets Groups Projects
phpunit.unit.xml 830 B
Newer Older
  • Learn to ignore specific revisions
  • <?xml version="1.0" encoding="utf-8" ?>
    <phpunit bootstrap="bootstrap.php"
    		 verbose="true"
    		 timeoutForSmallTests="900"
    		 timeoutForMediumTests="900"
    		 timeoutForLargeTests="900"
    
    		 cacheResult="true"
    
    	<testsuite name='Mail app tests'>
    
    		<directory suffix='test.php'>Unit</directory>
    		<directory suffix='Test.php'>Unit</directory>
    
    	</testsuite>
    	<!-- filters for code coverage -->
    	<filter>
    		<whitelist>
    
    			<directory suffix=".php">../</directory>
    
    Thomas Müller's avatar
    Thomas Müller committed
    				<directory suffix=".php">../mail/l10n</directory>
    
    				<directory suffix=".php">../mail/templates</directory>
    
    Thomas Müller's avatar
    Thomas Müller committed
    				<directory suffix=".php">../mail/tests</directory>
    
    			</exclude>
    		</whitelist>
    	</filter>
    	<logging>
    		<!-- and this is where your report will be written -->
    
    		<log type="coverage-clover" target="./clover.unit.xml"/>