phpunit.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
  5. bootstrap="vendor/autoload.php"
  6. colors="true"
  7. >
  8. <testsuites>
  9. <!-- Admin package testsuites. -->
  10. <testsuite name="Admin Feature Test">
  11. <directory suffix="Test.php">packages/Webkul/Admin/tests/Feature</directory>
  12. </testsuite>
  13. <!-- Core package testsuites. -->
  14. <testsuite name="Core Unit Test">
  15. <directory suffix="Test.php">packages/Webkul/Core/tests/Unit</directory>
  16. </testsuite>
  17. <!-- DataGrid package testsuites. -->
  18. <testsuite name="DataGrid Unit Test">
  19. <directory suffix="Test.php">packages/Webkul/DataGrid/tests/Unit</directory>
  20. </testsuite>
  21. <!-- Installer package testsuites. -->
  22. <testsuite name="Installer Feature Test">
  23. <directory suffix="Test.php">packages/Webkul/Installer/tests/Feature</directory>
  24. </testsuite>
  25. <!-- Shop package testsuites. -->
  26. <testsuite name="Shop Feature Test">
  27. <directory suffix="Test.php">packages/Webkul/Shop/tests/Feature</directory>
  28. </testsuite>
  29. <!-- BagistoApi package testsuites. -->
  30. <testsuite name="BagistoApi Unit Test">
  31. <directory suffix="Test.php">packages/Webkul/BagistoApi/tests/Unit</directory>
  32. </testsuite>
  33. <!-- Longyi Core package testsuites. -->
  34. <testsuite name="Longyi Core Unit Test">
  35. <directory suffix="Test.php">packages/Longyi/Core/tests/Unit</directory>
  36. </testsuite>
  37. </testsuites>
  38. <source>
  39. <include>
  40. <directory>app</directory>
  41. <directory>packages</directory>
  42. </include>
  43. </source>
  44. <php>
  45. <env name="APP_ENV" value="testing"/>
  46. <env name="APP_MAINTENANCE_DRIVER" value="file"/>
  47. <env name="BCRYPT_ROUNDS" value="4"/>
  48. <env name="CACHE_STORE" value="array"/>
  49. <env name="MAIL_MAILER" value="array"/>
  50. <env name="PULSE_ENABLED" value="false"/>
  51. <env name="QUEUE_CONNECTION" value="sync"/>
  52. <env name="SESSION_DRIVER" value="array"/>
  53. <env name="TELESCOPE_ENABLED" value="false"/>
  54. </php>
  55. </phpunit>