123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?xml version="1.0" encoding="utf-8"?>
-
- <phpunit backupGlobals="false"
- backupStaticAttributes="false"
- colors="true"
- convertErrorsToExceptions="true"
- convertNoticesToExceptions="true"
- convertWarningsToExceptions="true"
- processIsolation="false"
- stopOnFailure="false"
- syntaxCheck="false"
- bootstrap="./tests/Doctrine/Tests/TestInit.php"
- >
- <php>
-
-
-
-
-
-
- <var name="tmpdb_type" value="pdo_mysql"/>
- <var name="tmpdb_host" value="localhost" />
- <var name="tmpdb_username" value="root" />
- <var name="tmpdb_password" value="" />
- <var name="tmpdb_name" value="doctrine_tests_tmp" />
- <var name="tmpdb_port" value="3306"/>
- </php>
-
- <testsuites>
- <testsuite name="Doctrine DBAL Test Suite">
- <directory>./tests/Doctrine/Tests/DBAL</directory>
- </testsuite>
- </testsuites>
- </phpunit>
|