Site du proximo, utilisé pour gérer le stock.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

phpunit.xml 1.0KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.8/phpunit.xsd"
  5. backupGlobals="false"
  6. colors="true"
  7. bootstrap="vendor/autoload.php"
  8. >
  9. <php>
  10. <ini name="error_reporting" value="-1" />
  11. <server name="KERNEL_CLASS" value="AppKernel" />
  12. </php>
  13. <testsuites>
  14. <testsuite name="AllTests">
  15. <directory>tests</directory>
  16. </testsuite>
  17. </testsuites>
  18. <filter>
  19. <whitelist>
  20. <directory>src</directory>
  21. <!--<exclude>
  22. <directory>src/*Bundle/Resources</directory>
  23. </exclude>-->
  24. </whitelist>
  25. </filter>
  26. <logging>
  27. <log type="coverage-html" target="./build/coverrage" />
  28. <log type="coverage-clover" target="./build/logs/clover.xml" />
  29. <log type="junit" target="./build/logs/junit.xml" />
  30. <log type="testdox-html" target="./build/logstestdox.html" />
  31. </logging>
  32. </phpunit>