Advertisement
Guest User

Untitled

a guest
Nov 14th, 2018
525
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.81 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
  4. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5.         xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd"
  6.         backupGlobals="false"
  7.         colors="true"
  8.         bootstrap="vendor/autoload.php"
  9. >
  10.     <php>
  11.         <ini name="error_reporting" value="-1" />
  12.     </php>
  13.  
  14.     <testsuites>
  15.         <testsuite name="Project Test Suite">
  16.             <directory>tests</directory>
  17.         </testsuite>
  18.     </testsuites>
  19.  
  20.     <filter>
  21.         <whitelist>
  22.             <directory>src</directory>
  23.         </whitelist>
  24.     </filter>
  25.  
  26.     <listeners>
  27.         <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
  28.     </listeners>
  29. </phpunit>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement