Update PHPUnit config
This commit is contained in:
		
							parent
							
								
									7a488c90a6
								
							
						
					
					
						commit
						235eaf580a
					
				
					 1 changed files with 6 additions and 11 deletions
				
			
		
							
								
								
									
										17
									
								
								phpunit.xml
									
										
									
									
									
								
							
							
						
						
									
										17
									
								
								phpunit.xml
									
										
									
									
									
								
							| 
						 | 
					@ -1,18 +1,13 @@
 | 
				
			||||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
					<?xml version="1.0" encoding="UTF-8"?>
 | 
				
			||||||
<phpunit backupGlobals="false"
 | 
					<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 | 
				
			||||||
         backupStaticAttributes="false"
 | 
					         xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
 | 
				
			||||||
         bootstrap="vendor/autoload.php"
 | 
					         bootstrap="vendor/autoload.php"
 | 
				
			||||||
         colors="true"
 | 
					         colors="true"
 | 
				
			||||||
         convertErrorsToExceptions="true"
 | 
					>
 | 
				
			||||||
         convertNoticesToExceptions="true"
 | 
					 | 
				
			||||||
         convertWarningsToExceptions="true"
 | 
					 | 
				
			||||||
         processIsolation="false"
 | 
					 | 
				
			||||||
         stopOnFailure="false">
 | 
					 | 
				
			||||||
    <testsuites>
 | 
					    <testsuites>
 | 
				
			||||||
        <testsuite name="Unit">
 | 
					        <testsuite name="Unit">
 | 
				
			||||||
            <directory suffix="Test.php">./tests/Unit</directory>
 | 
					            <directory suffix="Test.php">./tests/Unit</directory>
 | 
				
			||||||
        </testsuite>
 | 
					        </testsuite>
 | 
				
			||||||
 | 
					 | 
				
			||||||
        <testsuite name="Feature">
 | 
					        <testsuite name="Feature">
 | 
				
			||||||
            <directory suffix="Test.php">./tests/Feature</directory>
 | 
					            <directory suffix="Test.php">./tests/Feature</directory>
 | 
				
			||||||
        </testsuite>
 | 
					        </testsuite>
 | 
				
			||||||
| 
						 | 
					@ -26,10 +21,10 @@
 | 
				
			||||||
        <server name="APP_ENV" value="testing"/>
 | 
					        <server name="APP_ENV" value="testing"/>
 | 
				
			||||||
        <server name="BCRYPT_ROUNDS" value="4"/>
 | 
					        <server name="BCRYPT_ROUNDS" value="4"/>
 | 
				
			||||||
        <server name="CACHE_DRIVER" value="array"/>
 | 
					        <server name="CACHE_DRIVER" value="array"/>
 | 
				
			||||||
        <server name="MAIL_DRIVER" value="array"/>
 | 
					        <server name="DB_DATABASE" value=":memory:"/>
 | 
				
			||||||
 | 
					        <server name="MAIL_MAILER" value="array"/>
 | 
				
			||||||
        <server name="QUEUE_CONNECTION" value="sync"/>
 | 
					        <server name="QUEUE_CONNECTION" value="sync"/>
 | 
				
			||||||
        <server name="SESSION_DRIVER" value="array"/>
 | 
					        <server name="SESSION_DRIVER" value="array"/>
 | 
				
			||||||
        <server name="DB_CONNECTION" value="sqlite"/>
 | 
					        <server name="TELESCOPE_ENABLED" value="false"/>
 | 
				
			||||||
        <server name="DB_DATABASE" value=":memory:"/>
 | 
					 | 
				
			||||||
    </php>
 | 
					    </php>
 | 
				
			||||||
</phpunit>
 | 
					</phpunit>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue