phpunit.xml 516 B

123456789101112131415
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="phpunit.xsd"
  4. convertErrorsToExceptions="true"
  5. convertNoticesToExceptions="true"
  6. convertWarningsToExceptions="true"
  7. bootstrap="tests/bootstrap.php"
  8. verbose="true"
  9. colors="true">
  10. <testsuites>
  11. <testsuite name="default">
  12. <directory suffix="Test.php">tests</directory>
  13. </testsuite>
  14. </testsuites>
  15. </phpunit>