|
4 | 4 | xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" |
5 | 5 | bootstrap="vendor/autoload.php" |
6 | 6 | colors="true"> |
7 | | - <coverage processUncoveredFiles="true"> |
8 | | - <include> |
9 | | - <directory suffix=".php">./src</directory> |
10 | | - </include> |
11 | | - <exclude> |
12 | | - <file>./src/Sql/Ddl/Column/Float.php</file> |
13 | | - </exclude> |
14 | | - </coverage> |
| 7 | + |
| 8 | + <extensions> |
| 9 | + <bootstrap class="PhpDbIntegrationTest\Extension\ListenerExtension" /> |
| 10 | + </extensions> |
15 | 11 |
|
16 | 12 | <testsuites> |
17 | 13 | <testsuite name="unit test"> |
18 | 14 | <directory>./test/unit</directory> |
| 15 | + <exclude>./test/unit/Adapter/AdapterAbstractServiceFactoryTest.php</exclude> |
| 16 | + <exclude>./test/unit/Adapter/AdapterServiceFactoryTest.php</exclude> |
| 17 | + <exclude>./test/unit/Adapter/AdapterServiceDelegatorTest.php</exclude> |
| 18 | + <exclude>./test/unit/Adapter/Driver/Pdo/PdoTest.php</exclude> |
| 19 | + <exclude>./test/unit/Adapter/Driver/Pdo/ConnectionTest.php</exclude> |
| 20 | + <exclude>./test/unit/Adapter/Driver/Pdo/ConnectionIntegrationTest.php</exclude> |
| 21 | + <exclude>./test/unit/Adapter/Driver/Pdo/StatementTest.php</exclude> |
| 22 | + <exclude>./test/unit/Adapter/Driver/Pdo/StatementIntegrationTest.php</exclude> |
| 23 | + <exclude>./test/unit/Adapter/AdapterTest.php</exclude> |
| 24 | + <exclude>./test/unit/Adapter/AdapterAwareTraitTest.php</exclude> |
| 25 | + <exclude>./test/unit/TableGateway</exclude> |
| 26 | + <exclude>./test/unit/RowGateway</exclude> |
| 27 | + <exclude>./test/unit/ConfigProviderTest.php</exclude> |
19 | 28 | </testsuite> |
20 | 29 | <testsuite name="integration test"> |
21 | 30 | <directory>./test/integration</directory> |
22 | 31 | </testsuite> |
23 | 32 | </testsuites> |
24 | 33 |
|
25 | | - <listeners> |
26 | | - <listener class="PhpDbIntegrationTest\IntegrationTestListener" file="./test/integration/IntegrationTestListener.php"/> |
27 | | - </listeners> |
28 | | - |
29 | 34 | <php> |
30 | 35 | <!-- Integration Test Variables --> |
31 | 36 | <env name="TESTS_PHPDB_ADAPTER_DRIVER_MYSQL" value="true" /> |
|
34 | 39 | <env name="TESTS_PHPDB_ADAPTER_DRIVER_MYSQL_PASSWORD" value="password" /> |
35 | 40 | <env name="TESTS_PHPDB_ADAPTER_DRIVER_MYSQL_DATABASE" value="laminasdb_test" /> |
36 | 41 |
|
37 | | - <env name="TESTS_LAMINAS_DB_ADAPTER_DRIVER_SQLSRV" value="true" /> |
| 42 | + <env name="TESTS_LAMINAS_DB_ADAPTER_DRIVER_SQLSRV" value="false" /> |
38 | 43 | <env name="TESTS_LAMINAS_DB_ADAPTER_DRIVER_SQLSRV_HOSTNAME" value="mssql" /> |
39 | 44 | <env name="TESTS_LAMINAS_DB_ADAPTER_DRIVER_SQLSRV_USERNAME" value="sa" /> |
40 | 45 | <env name="TESTS_LAMINAS_DB_ADAPTER_DRIVER_SQLSRV_PASSWORD" value="Password123" /> |
|
52 | 57 | <env name="TESTS_LAMINAS_DB_ADAPTER_DRIVER_IBMDB2_PASSWORD" value="" /> |
53 | 58 | <env name="TESTS_LAMINAS_DB_ADAPTER_DRIVER_IBMDB2_DATABASE" value="" /> |
54 | 59 |
|
55 | | - <env name="TESTS_LAMINAS_DB_ADAPTER_DRIVER_PGSQL" value="true" /> |
| 60 | + <env name="TESTS_LAMINAS_DB_ADAPTER_DRIVER_PGSQL" value="false" /> |
56 | 61 | <env name="TESTS_LAMINAS_DB_ADAPTER_DRIVER_PGSQL_HOSTNAME" value="postgres" /> |
57 | 62 | <env name="TESTS_LAMINAS_DB_ADAPTER_DRIVER_PGSQL_USERNAME" value="gha" /> |
58 | 63 | <env name="TESTS_LAMINAS_DB_ADAPTER_DRIVER_PGSQL_PASSWORD" value="password" /> |
|
0 commit comments