Codebase list php-embed / 572d4b0d-95bf-47fe-828e-43158f3f13cd/upstream phpunit.xml.dist
572d4b0d-95bf-47fe-828e-43158f3f13cd/upstream

Tree @572d4b0d-95bf-47fe-828e-43158f3f13cd/upstream (Download .tar.gz)

phpunit.xml.dist @572d4b0d-95bf-47fe-828e-43158f3f13cd/upstreamraw · history · blame

<?xml version="1.0" encoding="UTF-8"?>
<phpunit
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.4/phpunit.xsd"
    bootstrap="vendor/autoload.php"
    backupGlobals="false"
    backupStaticAttributes="false"
    colors="true"
    verbose="true"
    convertErrorsToExceptions="true"
    convertNoticesToExceptions="true"
    convertWarningsToExceptions="true"
    processIsolation="false"
    stopOnFailure="false">
	<testsuites>
		<testsuite name="All tests">
			<directory>tests</directory>
		</testsuite>
	</testsuites>
    <groups>
        <exclude>
            <group>ignore</group>
        </exclude>
    </groups>
</phpunit>