Browse Source

Additional options added to phpunit.xml

pull/40/head
Paul Rock 6 years ago
parent
commit
7d18e1bd54
  1. 12
      phpunit.xml

12
phpunit.xml

@ -1,10 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./vendor/autoload.php" colors="true">
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="true">
<filter> <filter>
<whitelist processUncoveredFilesFromWhitelist="true"> <whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory> <directory suffix=".php">./src</directory>
<exclude> <exclude>
<directory suffix=".php">./tests</directory>
<directory suffix="Test.php">./tests</directory>
</exclude> </exclude>
</whitelist> </whitelist>
</filter> </filter>

Loading…
Cancel
Save