phpunit.xml.dist 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. colors="true"
  5. convertErrorsToExceptions="true"
  6. convertNoticesToExceptions="true"
  7. convertWarningsToExceptions="true"
  8. processIsolation="false"
  9. stopOnFailure="false"
  10. syntaxCheck="false"
  11. bootstrap="./bootstrap.php"
  12. >
  13. <testsuites>
  14. <testsuite name="Translatable Extension">
  15. <directory suffix="Test.php">./Gedmo/Translatable/</directory>
  16. </testsuite>
  17. <testsuite name="Sluggable Extension">
  18. <directory suffix="Test.php">./Gedmo/Sluggable/</directory>
  19. </testsuite>
  20. <testsuite name="Sortable Extension">
  21. <directory suffix="Test.php">./Gedmo/Sortable/</directory>
  22. </testsuite>
  23. <testsuite name="Tree Extension">
  24. <directory suffix="Test.php">./Gedmo/Tree/</directory>
  25. </testsuite>
  26. <testsuite name="Timestampable Extension">
  27. <directory suffix="Test.php">./Gedmo/Timestampable/</directory>
  28. </testsuite>
  29. <testsuite name="Blameable Extension">
  30. <directory suffix="Test.php">./Gedmo/Blameable/</directory>
  31. </testsuite>
  32. <testsuite name="Mapping Extension">
  33. <directory suffix="Test.php">./Gedmo/Mapping/</directory>
  34. </testsuite>
  35. <testsuite name="Loggable Extension">
  36. <directory suffix="Test.php">./Gedmo/Loggable/</directory>
  37. </testsuite>
  38. <testsuite name="Sortable Extension">
  39. <directory suffix="Test.php">./Gedmo/Sortable/</directory>
  40. </testsuite>
  41. <testsuite name="Object wrappers">
  42. <directory suffix="Test.php">./Gedmo/Wrapper/</directory>
  43. </testsuite>
  44. <testsuite name="Translator extension">
  45. <directory suffix="Test.php">./Gedmo/Translator/</directory>
  46. </testsuite>
  47. <testsuite name="SoftDeleteable Extension">
  48. <directory suffix="Test.php">./Gedmo/SoftDeleteable/</directory>
  49. </testsuite>
  50. <testsuite name="Uploadable Extension">
  51. <directory suffix="Test.php">./Gedmo/Uploadable/</directory>
  52. </testsuite>
  53. <testsuite name="ReferenceIntegrity Extension">
  54. <directory suffix="Test.php">./Gedmo/ReferenceIntegrity/</directory>
  55. </testsuite>
  56. <testsuite name="References Extension">
  57. <directory suffix="Test.php">./Gedmo/References/</directory>
  58. </testsuite>
  59. </testsuites>
  60. <filter>
  61. <whitelist>
  62. <directory>../lib</directory>
  63. </whitelist>
  64. </filter>
  65. </phpunit>