-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathphpunit.xml
More file actions
29 lines (28 loc) · 920 Bytes
/
phpunit.xml
File metadata and controls
29 lines (28 loc) · 920 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit>
<testsuites>
<!-- prevent phpunit from running vendor-specific suites unpromoted -->
<testsuite name="core">
<directory>test/Core</directory>
</testsuite>
<!-- vendor-specific suites -->
<testsuite name="file">
<directory>test/File</directory>
</testsuite>
<testsuite name="mariadb">
<directory>test/MariaDB</directory>
</testsuite>
<testsuite name="mysql">
<directory>test/MySQL</directory>
</testsuite>
<testsuite name="pgsql">
<directory>test/PgSQL</directory>
</testsuite>
<testsuite name="sqlite">
<directory>test/SQLite</directory>
</testsuite>
<testsuite name="sqlsrv">
<directory>test/SQLSrv</directory>
</testsuite>
</testsuites>
</phpunit>