34 lines
808 B
XML
34 lines
808 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit backupGlobals="true"
|
|
backupStaticAttributes="false"
|
|
bootstrap="./vendor/autoload.php"
|
|
colors="false"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="false"
|
|
convertWarningsToExceptions="true"
|
|
forceCoversAnnotation="false"
|
|
|
|
processIsolation="false"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
stopOnIncomplete="false"
|
|
stopOnSkipped="false"
|
|
|
|
verbose="false">
|
|
|
|
<testsuites>
|
|
<testsuite name="Goetas XSD to PHP Test Suite">
|
|
<directory>./tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory>src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
</phpunit>
|
|
|
|
|