mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <phpunit backupGlobals="false"
 | |
|          backupStaticAttributes="false"
 | |
|          bootstrap="bootstrap/autoload.php"
 | |
|          colors="true"
 | |
|          convertErrorsToExceptions="true"
 | |
|          convertNoticesToExceptions="true"
 | |
|          convertWarningsToExceptions="true"
 | |
|          processIsolation="false"
 | |
|          verbose="true"
 | |
|          stopOnFailure="true"
 | |
|          strict="false"
 | |
|          syntaxCheck="false"
 | |
| >
 | |
| 
 | |
| 
 | |
|     <filter>
 | |
|         <whitelist>
 | |
|             <directory suffix=".php">./app/models</directory>
 | |
|             <directory suffix=".php">./app/controllers</directory>
 | |
|             <directory suffix=".php">./app/events</directory>
 | |
|             <directory suffix=".php">./app/extensions</directory>
 | |
|             <directory suffix=".php">./app/queue</directory>
 | |
|             <directory suffix=".php">./app/helpers</directory>
 | |
|             <exclude>
 | |
|                 <file>./app/controllers/BaseController.php</file>
 | |
|             </exclude>
 | |
|         </whitelist>
 | |
| 
 | |
|     </filter>
 | |
| 
 | |
|     <logging>
 | |
|         <log type="coverage-clover" target="build/logs/clover.xml"/>
 | |
|     </logging>
 | |
| 
 | |
|     <testsuites>
 | |
|         <testsuite name="Application Test Suite">
 | |
|             <directory>./app/tests/</directory>
 | |
|         </testsuite>
 | |
|     </testsuites>
 | |
| </phpunit>
 |