pdo-oci.phpunit.xml 1.22 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
<?xml version="1.0" encoding="utf-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="../../vendor/phpunit/phpunit/phpunit.xsd"
         colors="true"
         beStrictAboutOutputDuringTests="true"
         beStrictAboutTodoAnnotatedTests="true"
         failOnRisky="true"
         failOnWarning="true"
         bootstrap="bootstrap.php"
>
  <php>
12
    <var name="db_driver" value="pdo_oci"/>
13
    <var name="db_host" value="oracle-xe-11" />
14
    <var name="db_user" value="C##doctrine" />
15
    <var name="db_password" value="ORACLE" />
16
    <var name="db_dbname" value="XE" />
17 18
    <var name="db_event_subscribers" value="Doctrine\DBAL\Event\Listeners\OracleSessionInit"/>

19
    <var name="tmpdb_driver" value="pdo_oci"/>
20
    <var name="tmpdb_host" value="oracle-xe-11" />
21
    <var name="tmpdb_user" value="ORACLE" />
22
    <var name="tmpdb_password" value="ORACLE" />
23
    <var name="tmpdb_dbname" value="XE" />
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
  </php>

  <testsuites>
    <testsuite name="Doctrine DBAL Test Suite">
      <directory>../Doctrine/Tests/DBAL</directory>
    </testsuite>
  </testsuites>

  <filter>
    <whitelist>
      <directory suffix=".php">../../lib/Doctrine</directory>
    </whitelist>
  </filter>

</phpunit>