phpunit.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. bootstrap="phpunit.php"
  5. colors="true"
  6. convertErrorsToExceptions="true"
  7. convertNoticesToExceptions="true"
  8. convertWarningsToExceptions="true"
  9. processIsolation="false"
  10. stopOnError="false"
  11. stopOnFailure="false"
  12. syntaxCheck="true"
  13. verbose="true"
  14. >
  15. <testsuites>
  16. <testsuite name="Laravel Shopping Cart package Test Suite">
  17. <directory suffix="Test.php">./tests</directory>
  18. </testsuite>
  19. </testsuites>
  20. <filter>
  21. <whitelist processUncoveredFilesFromWhitelist="true">
  22. <directory suffix=".php">./src</directory>
  23. <exclude>
  24. <file>./src/Exception.php</file>
  25. <file>./src/Facade.php</file>
  26. <file>./src/ServiceProvider.php</file>
  27. <file>./src/Storage/DatabaseStorage.php</file>
  28. <file>./src/Storage/SessionStorage.php</file>
  29. </exclude>
  30. </whitelist>
  31. </filter>
  32. </phpunit>