1<?xml version="1.0" encoding="UTF-8"?> 2<phpunit backupGlobals="true" 3 backupStaticAttributes="false" 4 bootstrap="./vendor/autoload.php" 5 colors="false" 6 convertErrorsToExceptions="true" 7 convertNoticesToExceptions="false" 8 convertWarningsToExceptions="true" 9 forceCoversAnnotation="false" 10 11 processIsolation="false" 12 stopOnError="false" 13 stopOnFailure="false" 14 stopOnIncomplete="false" 15 stopOnSkipped="false" 16 17 verbose="false"> 18 19 <testsuites> 20 <testsuite name="Goetas XSD to PHP Test Suite"> 21 <directory>./tests</directory> 22 </testsuite> 23 </testsuites> 24 25<filter> 26 <whitelist> 27 <directory>src</directory> 28 </whitelist> 29 </filter> 30 31</phpunit> 32 33 34