pdo_mysql.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="../../vendor/phpunit/phpunit/phpunit.xsd"
  4. colors="true"
  5. beStrictAboutOutputDuringTests="true"
  6. beStrictAboutTodoAnnotatedTests="true"
  7. failOnRisky="true"
  8. >
  9. <php>
  10. <var name="db_driver" value="pdo_mysql"/>
  11. <var name="db_host" value="127.0.0.1" />
  12. <var name="db_port" value="3306"/>
  13. <var name="db_user" value="root" />
  14. <var name="db_dbname" value="doctrine_tests" />
  15. <!-- necessary change for some CLI/console output test assertions -->
  16. <env name="COLUMNS" value="120"/>
  17. </php>
  18. <testsuites>
  19. <testsuite name="Doctrine DBAL Test Suite">
  20. <directory>../../../tests</directory>
  21. </testsuite>
  22. </testsuites>
  23. <filter>
  24. <whitelist>
  25. <directory suffix=".php">../../../lib/Doctrine</directory>
  26. </whitelist>
  27. </filter>
  28. <groups>
  29. <exclude>
  30. <group>performance</group>
  31. <group>locking_functional</group>
  32. </exclude>
  33. </groups>
  34. </phpunit>