1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?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"
- >
-
- <testsuites>
- <testsuite name="Doctrine ORM Test Suite">
- <directory>./tests/Doctrine/Tests/ORM</directory>
- </testsuite>
- </testsuites>
-
- <groups>
- <exclude>
- <group>performance</group>
- <group>locking_functional</group>
- </exclude>
- </groups>
-
- <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>
-
- </phpunit>
|