-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathphpunit.xml
More file actions
66 lines (66 loc) · 3 KB
/
phpunit.xml
File metadata and controls
66 lines (66 loc) · 3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
stopOnFailure="false"
cacheDirectory=".phpunit.cache"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
displayDetailsOnPhpunitDeprecations="true"
defaultTestSuite="PdoDb Test Suite"
>
<testsuites>
<testsuite name="PdoDb Test Suite">
<directory suffix="Tests.php">./tests/mysql</directory>
<directory suffix="Tests.php">./tests/mariadb</directory>
<directory suffix="Tests.php">./tests/mssql</directory>
<directory suffix="Tests.php">./tests/oracle</directory>
<directory suffix="Tests.php">./tests/postgresql</directory>
<directory suffix="Tests.php">./tests/sqlite</directory>
<directory suffix="Tests.php">./tests/shared</directory>
<exclude>./tests/mysql/Base*.php</exclude>
<exclude>./tests/mariadb/Base*.php</exclude>
<exclude>./tests/mssql/Base*.php</exclude>
<exclude>./tests/oracle/Base*.php</exclude>
<exclude>./tests/postgresql/Base*.php</exclude>
<exclude>./tests/sqlite/Base*.php</exclude>
<exclude>./tests/shared/Base*.php</exclude>
</testsuite>
<testsuite name="MySQL Tests">
<directory suffix="Tests.php">./tests/mysql</directory>
<exclude>./tests/mysql/Base*.php</exclude>
</testsuite>
<testsuite name="MariaDB Tests">
<directory suffix="Tests.php">./tests/mariadb</directory>
<exclude>./tests/mariadb/Base*.php</exclude>
</testsuite>
<testsuite name="Oracle Tests">
<directory suffix="Tests.php">./tests/oracle</directory>
<exclude>./tests/oracle/Base*.php</exclude>
</testsuite>
<testsuite name="PostgreSQL Tests">
<directory suffix="Tests.php">./tests/postgresql</directory>
<exclude>./tests/postgresql/Base*.php</exclude>
</testsuite>
<testsuite name="SQLite Tests">
<directory suffix="Tests.php">./tests/sqlite</directory>
<exclude>./tests/sqlite/Base*.php</exclude>
</testsuite>
<testsuite name="MSSQL Tests">
<directory suffix="Tests.php">./tests/mssql</directory>
<exclude>./tests/mssql/Base*.php</exclude>
</testsuite>
<testsuite name="Shared Tests">
<directory suffix="Tests.php">./tests/shared</directory>
<exclude>./tests/shared/Base*.php</exclude>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
</phpunit>