28 lines
		
	
	
		
			913 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			913 B
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 | |
|     xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
 | |
|     colors="true"
 | |
|     verbose="true"
 | |
|     beStrictAboutOutputDuringTests="true"
 | |
|     beStrictAboutTodoAnnotatedTests="true"
 | |
|     beStrictAboutChangesToGlobalState="true"
 | |
|     beStrictAboutCoversAnnotation="true"
 | |
|     beStrictAboutResourceUsageDuringSmallTests="true"
 | |
|     beStrictAboutTestsThatDoNotTestAnything="true"
 | |
|     forceCoversAnnotation="true">
 | |
| 	<testsuites>
 | |
| 		<testsuite name="Unit Test Suite">
 | |
| 			<directory>test/unit</directory>
 | |
| 		</testsuite>
 | |
| 		<testsuite name="Integration Test Suite">
 | |
| 			<directory>test/functional</directory>
 | |
| 		</testsuite>
 | |
| 	</testsuites>
 | |
| 
 | |
|     <filter>
 | |
|         <whitelist processUncoveredFilesFromWhitelist="true">
 | |
|             <directory suffix=".php">src</directory>
 | |
|         </whitelist>
 | |
|     </filter>
 | |
| </phpunit>
 | 
